开发者

How to select an element from a string value

开发者 https://www.devze.com 2023-03-31 04:30 出处:网络
I have开发者_开发问答 this code : <div id=\"example\"> Hello </div> var string=\"example\";

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

精彩评论

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