本文介绍了使用javascript启用和禁用按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
PLZ帮帮我..
如何通过javascript禁用和启用按钮
我的问题是禁用按钮没有启用通过javascript但启用按钮被禁用通过javascript
plz help me out..
how to disable and enable buttons through javascript
my problem is disabled buttons are not getting enabled through javascript but enabled buttons are disabled through javascript
推荐答案
document.getElementById('button').disabled = true;
希望这会有所帮助。
Hope this will help.
document.getElementById("buttonID").disabled = true
这篇关于使用javascript启用和禁用按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!