开发者

Get an element that has an ID which starts with some characters using Dojo

开发者 https://www.devze.com 2023-03-08 04:16 出处:网络
I have a node defined by the following HTML markup: <div id="_13:3AVAsa7qVvAprAar19ie8LRorrLEm2g" >asdf</div>

I have a node defined by the following HTML markup:

<div id="_13:3AVAsa7qVvAprAar19ie8LRorrLEm2g" >asdf</div>

I need to get a referenc开发者_如何转开发e to it without using it's full id like:

dojo.byId('_13:*'); 

Is it possible or is there any other ways that could be achieved?


You should use the attribute starts-with selector.

I've never used Dojo, but looking here:
http://dojotoolkit.org/reference-guide/dojo/query.html

It seems that you need this:

dojo.query('div[id^="_13:"]')

That same link also contains examples of other useful selectors at the end of the page.

0

精彩评论

暂无评论...
验证码 换一张
取 消