开发者

How to select an element from a string value

I have开发者_开发问答 this code :

<div id="example">
    Hello
</div>

var string="example";
alert($(''+string).html());

but it should print "Hello" not null...why?


Try this.

alert($('#'+string).html());
0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜