window.alert = function (obj) {
	var iframe = document.createElement('iframe');
	iframe.src = 'javascript:void(0);'
	document.body.appendChild(iframe)
	iframe.contentWindow.alert(obj);
	iframe.parentNode.removeChild(iframe);
}

window.hugo={}
window.hugo.iframes=[]
let iframes=window.hugo.iframes;
var openIframe=function(html,body){
	// 1. 创建<iframe>元素
	var ifr = document.createElement('iframe');
//	// 2. 将CSS,HTML字符串转换为Blob对象
//	var blob = new Blob([html], {
//	  'type': 'text/html'
//	});
//	// 3. 使用URL.createObjectURL()方法将...
//	iframe.src = URL.createObjectURL(blob);
	body.innerHTML = "";
	body.appendChild(ifr);
	var ifrw = (ifr.contentWindow) ? ifr.contentWindow: (ifr.contentDocument.document) ? ifr.contentDocument.document: ifr.contentDocument;
	ifrw.document.open();
	ifrw.document.write(html);
	ifrw.document.close();
	//console.log(x)
}
//开启页面html
{

    let xx = $("#cnblogs_post_body,.cnblogs-post-body").find("[data-type=html]");
    let xxx = [];
    for (let x of xx) {
        xxx.push(x.innerText)
    };
    xx.remove();
    let URL = window.URL || window.webkitURL;
    for (let x of xxx) {
		//openIframe(x,document.body)
		iframes.push(x);
    };
}

摘要: 直接在web端新建应用 C:\Users\Hugo> vue ui 直接在web端新建应用 C:\Users\Hugo> vue ui 阅读全文
posted @ 2018-12-09 19:58 离线云 阅读(424) 评论(0) 推荐(0) 编辑
摘要: function dynamicLoadCss(url) { var head = document.getElementsByTagName('head')[0]; var link = document.createElement('link'); link.type='text/css'; l 阅读全文
posted @ 2018-12-09 19:51 离线云 阅读(241) 评论(1) 推荐(0) 编辑
摘要: 文件最大5m,不可跨域 阅读全文
posted @ 2018-12-09 19:48 离线云 阅读(591) 评论(0) 推荐(0) 编辑
摘要: 安装Node.js和npm 首先,从Node.js官网下载对应平台的安装程序,在Windows上安装时务必选择全部组件,包括勾选Add to Path,npm已经在Node.js安装的时候顺带装好了. C:\Users\Hugo>node -v v10.14.1 C:\Users\Hugo>npm 阅读全文
posted @ 2018-12-09 19:42 离线云 阅读(197) 评论(0) 推荐(0) 编辑