jQuery: .html()

$(elementobject).html("hello");

相当于:

elementobject.innerHTML("hello");(   getElementById("elementobjectid").innerHTML("hello") )

相当于:

$(elementobject)[0].innerHTML("hello");

寻找爱
原文地址:https://www.cnblogs.com/carolina/p/5486821.html