84669 人が学習中
152542 人が学習中
20005 人が学習中
5487 人が学習中
7821 人が学習中
359900 人が学習中
3350 人が学習中
180660 人が学習中
48569 人が学習中
18603 人が学習中
40936 人が学習中
1549 人が学習中
1183 人が学習中
32909 人が学習中
比如有多个class分别为xx1xx2xx3...xx-ssm如何一次性选中他们
走同样的路,发现不同的人生
使用如下方法:
$('*[class^="xx"]')
$("[class*='xx']")
*表示class属性包含'xx'的元素。
楼上说的class^="xx",表示以'xx'为开始的
还有个$,表示以'xx'为结束的
JQuery选择器大全:http://www.php100.com/html/webkaifa/javascript/2012/0611/10527.html
使用如下方法:
$("[class*='xx']")
*表示class属性包含'xx'的元素。
楼上说的class^="xx",表示以'xx'为开始的
还有个$,表示以'xx'为结束的
JQuery选择器大全:
http://www.php100.com/html/webkaifa/javascript/2012/0611/10527.html