So I have a button like this:
(所以我有一个像这样的按钮:)
<input id="Button" type="button" value="+" style="background-color:grey" onclick="Me();"/>
How can I disable and enable it when I want?
(我要如何禁用和启用它?)
I have trieddisabled="disable"
but enabling it back is a problem.(我尝试过disabled="disable"
但将其重新启用是一个问题。)
(我尝试将其设置回false,但没有启用它。)
ask by k.ken translate from so