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 实现的,但还没有在 stackoverflow 上找到一个好的参考(还)。
<input type="checkbox" value=someval>
我猜我需要在输入框中添加一个类,然后让 jquery 切换显示/隐藏属性?
向 chckbox 添加一个类
<input type="checkbox" class="myitems" value=someval>
然后
jQuery(function($){ $('mylink').click(function(){ $('.myitems').toggle(); }) })