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.
我正在尝试控制一组下拉菜单,通过更改第一个菜单,然后所有其他菜单都将选择第一个菜单项。
在我的示例中,我想要实现的是:当更改“全选”的选定值时,其余部分应设置为该值。
我希望我说清楚了。
提前致谢。
检查以下屏幕截图:
更新!!!!试试这个链接DEMO
$("#sortedby").change(function () { $("select").val($(this).val()); });
更新!!!!
这是一个 jQuery 实现的示例(相应地更改您的选择器):
$(function() { $('select.select-all').change(function() { $('select', $(this).closest('tr')).val(this.value); }); });