Вы можете вызвать disablebutton()
внутри run()
функции или добавить ее после run()
функции в onClick()
:
<input type="button" class="buttons" id="button2" value="2"
onclick="run(); disablebutton(this)" />
// Or
<input type="button" class="buttons" id="button2" value="2"
onclick="run(this)" />
function run(thisButton) {
console.log('run');
disableButton(thisButton)
}
1-е решение:
function run() {
console.log('run');
}
function disablebutton(button){
console.log(button);
button.disabled = true;
}
<input type="button" class="buttons" id="button2" value="2"
onclick="run(); disablebutton(this)" />
2-е решение:
function run(thisButton) {
console.log('run');
disablebutton(thisButton)
}
function disablebutton(button){
console.log(button);
button.disabled = true;
}
<input type="button" class="buttons" id="button2" value="2"
onclick="run(this)" />