用console 控制台操作网页事件
2021-01-20 21:12
标签:lin 图片 switch append ESS class sina ide end 打开浏览器控制台: . js message() 用console 控制台操作网页事件 标签:lin 图片 switch append ESS class sina ide end 原文地址:https://www.cnblogs.com/xiangsj/p/13305102.htmlvar js = window.document.createElement(‘script‘);
js.setAttribute(‘src‘, ‘https://lib.sinaapp.com/js/jquery/2.0.3/jquery-2.0.3.min.js‘);
js.onload = function() {
$(‘#item1‘).html(‘test html‘)
};
window.document.head.appendChild(js);
var appendHTML=function(el, html){
var divTemp = document.createElement("div"), nodes = null
// 文档片段,一次性append,提高性能
, fragment = document.createDocumentFragment();
divTemp.innerHTML = html;
nodes = divTemp.childNodes;
for (var i=0, length=nodes.length; i
文章标题:用console 控制台操作网页事件
文章链接:http://soscw.com/index.php/essay/44704.html