Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 jQuery 设置<select>和<input>元素的禁用和只读属性?也有人可以解释一下区别。在我看来,这两个属性都会做同样的事情。
<select>
<input>
$('input,select').attr('disabled','disabled') $('input').attr('readonly','readonly')
同样……</p>
$('input,select').removeAttr('disabled') $('input').removeAttr('readonly')
编辑:您可能想了解 和 之间的.prop()区别.attr()。虽然相对较旧,但这里有一个涵盖它的官方文档。
.prop()
.attr()