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').change(function() { $(this) .siblings('select') .children('option[value=' + this.value + ']') .attr('disabled', true) .siblings().removeAttr('disabled'); });