如何从字符串值中选择元素

时间:2011-08-25 10:10:10

标签: jquery

我有this代码:

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

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

但它应该打印“Hello”而不是null ...为什么?

1 个答案:

答案 0 :(得分:3)

试试这个。

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