我正在使用 JavaScript 来禁用按钮。在 IE 中运行良好,但在 FireFox 和 chrome 中运行良好,这是我正在处理的脚本:
function disbtn(e) {
if ( someCondition == true ) {
document.getElementById('btn1').disabled = true;
} else {
document.getElementById('btn1').disabled = false;
}
在我的html中,我有:
<input type="button" id="btn1" value="submit" />