标签: jquery
我有this代码:
<div id="example"> Hello </div> var string="example"; alert($(''+string).html());
但它应该打印“Hello”而不是null ...为什么?
答案 0 :(得分:3)
试试这个。
alert($('#'+string).html());