禁用div在chrome中工作

时间:2013-06-11 14:12:31

标签: jquery google-chrome browser

禁用div中的按钮正在使用chrome。在Firefox中它不起作用。

$(".div_class").attr('disabled', 'disabled');
有人会有经验。请提出你的建议。

感谢

大家好, 这是此排队的解决方案

$(".div_class).find('input,textarea,select,button').attr('disabled', 'disabled');

2 个答案:

答案 0 :(得分:1)

使用.prop( propertyName, value )代替.attr( attributeName, value )

同时禁用button而不是.div_class

$(".div_class button").prop("disabled", true);

答案 1 :(得分:0)

As per Docs由于没有为div div禁用的属性或属性,禁用element没有任何意义。忘记div禁用button

$('#buttonselector').prop("disabled", true);