禁用div中的按钮正在使用chrome。在Firefox中它不起作用。
$(".div_class").attr('disabled', 'disabled');
有人会有经验。请提出你的建议。
感谢
大家好, 这是此排队的解决方案
$(".div_class).find('input,textarea,select,button').attr('disabled', 'disabled');
答案 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);