var icon= document.createElement("a");icon.className="iconfont";icon.innerHTML="";//icon.appendChild(document.createTextNode("")); document.getElementById("ifont").appendChild(icon)//document.getElementB…
jQuery( html [, ownerDocument ] )Returns: jQuery Description: Creates DOM elements on the fly from the provided string of raw HTML. version added: 1.0jQuery( html [, ownerDocument ] ) html Type: htmlString A string of HTML to create on the fly. Note…
最近项目遇到了问题,有个asp.net web程序只能在IE7 运行,现在xp都淘汰了,大家都用IE8-IE11,因此这个web app也需要升级 适应所有IE版本.照成IE版本不兼容的问题主要来致document.createElement方法的调用,如: function addStyleNo(value, cannotDel) { if (!value) { value = ''; } var tb = $('tbodyStyle'); var tr…
//--------------document.createElement("div") var div = document.createElement("div"); div.innerText = "abc"; 效果就是 //<div>abc</div> //---------------document.createTextNode()创建一个文本节点 var div = document.createEleme…