我有一个禁用的按钮。但是,当我单击启用iFrame并刷新网页时,我需要这样做。
这是我的按钮:
<input class="" id="deshacer" type="button" value="Deshacer cambios" disabled/>
我尝试这样做,但不起作用:
$("#probando").on('click', function () {
$("#deshacer").attr("disable", false);
});
这是我的iFrame:
<iframe id="probando" src="<?php echo $url; ?>" name="probando"></iframe>
最佳答案
用这个:
$("#probando").on('click', function () {
$("#deshacer").prop("disabled", false);
});
(
prop
代替attr
,而disabled
代替disable
)关于javascript - 启用和禁用输入,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30461776/