标签: jquery
我必须在点击时禁用按钮。使用下面的代码,但它不起作用。 下面的代码是使用jquery
$('#someid').prop('disabled', true);
任何解决方案?
答案 0 :(得分:1)
属性和属性有不同的行为。 见https://stackoverflow.com/a/6004028/4485651
改为使用
$('#someid').attr('disabled', true);
答案 1 :(得分:1)
$('#yourButton').click(function(){ $(this).attr('disabled', true); })