前端之家收集整理的这篇文章主要介绍了
Jquery外卡人物,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有3个控件,ID为control_1,control_2,control_3.
我想隐藏这些控件.
目前我正在使用这个:
$('#control_1').hide();
$('#control_2').hide();
$('#control_3').hide();
有更好的方法吗?
我可以做一些像$(‘control _ *’).hide();?
有没有办法找到具有特定名称的控件?
为完整起见,您可以使用
starts with属性过滤器:
$('[id^="control_"]').hide();
也就是说,在大多数情况下,最好采用其他建议之一.
原文链接:https://www.f2er.com/jquery/180722.html