首頁 > 問答 > 主體
比如有多个class分别为xx1xx2xx3...xx-ssm如何一次性选中他们
ringa_lee2017-04-11 10:58:53
使用如下方法:
$('*[class^="xx"]')
天蓬老师2017-04-11 10:58:53
$("[class*='xx']")
*表示class属性包含'xx'的元素。
楼上说的class^="xx",表示以'xx'为开始的
还有个$,表示以'xx'为结束的
JQuery选择器大全:http://www.php100.com/html/webkaifa/javascript/2012/0611/10527.html
首頁
課程
問答
我的