I have a structure of html like this:
some elements inside some elements inside
You can use the following:
$("div[id^='triger']")
This will return all with id starting (^=) with triger. You can get more information about the various jQuery selectors in the jQuery docs: API/Selectors 0 讨论(0) 查看其它4个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
with id starting (^=) with triger. You can get more information about the various jQuery selectors in the jQuery docs: API/Selectors 0 讨论(0) 查看其它4个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
id
^=
triger
You can get more information about the various jQuery selectors in the jQuery docs:
API/Selectors