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);
    };
}

上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: Catalina(10.15)正式版下载链接: https://apps.apple.com/cn/app/macos-catalina/id1466841314?mt=12 Mojave(10.14)正式版下载链接: https://itunes.apple.com/us/app/macos-mo 阅读全文
posted @ 2020-08-21 13:11 离线云 阅读(6049) 评论(0) 推荐(0) 编辑
摘要: 88144-5B44182B793BB091 阅读全文
posted @ 2020-08-19 17:07 离线云 阅读(1290) 评论(0) 推荐(0) 编辑
摘要: 修改 src/index.ejs 把 <% if (!process.browser) { %> <script> if (process.env.NODE_ENV !== 'development') window.__static = require('path').join(__dirname 阅读全文
posted @ 2020-07-27 19:19 离线云 阅读(590) 评论(0) 推荐(0) 编辑
摘要: npm淘宝源 npm config set registry=https://registry.npm.taobao.orgnpm config set sass_binary_site=https://npm.taobao.org/mirrors/node-sass/npm config set 阅读全文
posted @ 2020-07-27 19:08 离线云 阅读(5275) 评论(0) 推荐(0) 编辑
摘要: xxxxxxx 上一章 下一章 目录 首页 阅读全文
posted @ 2019-12-22 02:48 离线云 阅读(251) 评论(0) 推荐(0) 编辑
摘要: PURE CSSSTACK CLICK OR TAP TO RESTART 阅读全文
posted @ 2019-12-18 15:18 离线云 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 使用cube-ui时鼠标滚轮无法使用,且老触发无法滑动的bug,我十分困惑,于是分析了scroll组件,发现better-scroll才是关键. 于是我赶紧看了看better-scroll的文档.发现鼠标滚轮是可以开启的.开启之后终于可以愉快的使用鼠标滚轮了. 使用better-scroll,在ch 阅读全文
posted @ 2019-08-28 00:16 离线云 阅读(2958) 评论(1) 推荐(0) 编辑
摘要: // Charles Proxy License// 适用于Charles任意版本的注册码,谁还会想要使用破解版呢。// Charles 4.2目前是最新版,可用。Registered Name: https://zhile.ioLicense Key: 48891cf209c6d32bf4 阅读全文
posted @ 2019-08-04 13:37 离线云 阅读(193) 评论(0) 推荐(0) 编辑
摘要: cuda历史各个版本下载链接 https://developer.nvidia.com/cuda-toolkit-archive 阅读全文
posted @ 2019-07-29 14:01 离线云 阅读(6042) 评论(0) 推荐(0) 编辑
摘要: 在多线程操作里,C# 使用并发安全集合ConcurrentBag取代List,ConcurrentDictionary取代Dictionary. 推荐多线程代码如下,threadNum为并行线程数,list为要处理的集合,当所有代码执行完之后才执行xx函数. 阅读全文
posted @ 2019-07-25 17:52 离线云 阅读(343) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页