MediaWiki:Common.js
Перейти к навигации
Перейти к поиску
Замечание: Возможно, после публикации вам придётся очистить кэш своего браузера, чтобы увидеть изменения.
- Firefox / Safari: Удерживая клавишу Shift, нажмите на панели инструментов Обновить либо нажмите Ctrl+F5 или Ctrl+R (⌘+R на Mac)
- Google Chrome: Нажмите Ctrl+Shift+R (⌘+Shift+R на Mac)
- Edge: Удерживая Ctrl, нажмите Обновить либо нажмите Ctrl+F5
- Opera: Нажмите Ctrl+F5.
document.getElementById("button").addEventListener('click', function () {
var text = document.getElementById('text');
});
// Create a button element
const button = document.createElement('button')
// Set the button text to 'Can you click me?'
button.innerText = 'Ž'
// Attach the "click" event to your button
button.addEventListener('click', () => {
// When there is a "click"
text.value += 'Ž';
})
document.getElementById("button").addEventListener('click', function () {
var text = document.getElementById('text');
});
// Create a button element
const button = document.createElement('button')
// Set the button text to 'Can you click me?'
button.innerText = 'ž'
// Attach the "click" event to your button
button.addEventListener('click', () => {
// When there is a "click"
text.value += 'ž';
})