标签:
$(elementobject).html("hello");
相当于:
elementobject.innerHTML("hello");( getElementById("elementobjectid").innerHTML("hello") )
$(elementobject)[0].innerHTML("hello");
jQuery: .html()
原文地址:http://www.cnblogs.com/carolina/p/5486821.html