开发者

jQuery access element by id

This may be a si开发者_运维技巧mple question. I need to access an html element using jQuery in the following way:

var element_ID = "my" + "name" +"xyz";

Now I want to access/manipulate the element whose ID I have stored in 'element_ID' as above.

This doesn't work : $('#element_ID')

Please let me know the correct way to access the element stored 'element_ID' variable.

-Vijay


Just use string concatenation once more...

$('#' + element_ID)
0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜