我想隐藏这些控件.
目前我正在使用这个:
$('#control_1').hide(); $('#control_2').hide(); $('#control_3').hide();
有更好的方法吗?
我可以做一些像$(‘control _ *’).hide();?
有没有办法找到具有特定名称的控件?
$('[id^="control_"]').hide();
也就是说,在大多数情况下,最好采用其他建议之一.