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

摘要: 阅读全文
posted @ 2021-07-25 16:35 离线云 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-07-25 16:14 离线云 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-07-25 11:21 离线云 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 等价无穷小 泰勒公式 拉格朗日 阅读全文
posted @ 2021-07-22 19:19 离线云 阅读(180) 评论(1) 推荐(0) 编辑
摘要: 拉格朗日中值定理 阅读全文
posted @ 2021-06-22 10:56 离线云 阅读(39) 评论(0) 推荐(0) 编辑
摘要: (一)、基本公式 (二)四则求导法则 看不懂 (三)复合求导法则 (四)反函数求导 (五)隐函数求导 (六)参数方程求导 未看009 阅读全文
posted @ 2021-06-21 15:09 离线云 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 等价无穷小 两个重要极限 notes 型一 求极限题型 1)先求和 2)夹逼定理 3)(重点) 型二 证明极限存在 notes 型三 不定型 精度够可以用等价无穷小 0/0 1的无穷大次方 无穷/无穷 洛必达 看不懂 33:34 阅读全文
posted @ 2021-06-20 14:56 离线云 阅读(448) 评论(0) 推荐(0) 编辑
摘要: 解决方案 https://github.com/hongyangAndroid/FitAndroid7 导入 implementation 'com.zhy.base:fileprovider:1.0.0' 用法 uri=FileProvider7.getUriForFile(this, file) 阅读全文
posted @ 2020-11-01 11:08 离线云 阅读(1416) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-09-11 12:31 离线云 阅读(121) 评论(0) 推荐(0) 编辑
摘要: window.top.func_WebSocket_msg=console.log var g_WS_backup = WebSocket; //定义全局变量,用于保存WebSocket原函数地址 var g_WebSocket_msg = []; //定义全局变量,用于保存新建立的WebSocke 阅读全文
posted @ 2020-09-06 20:55 离线云 阅读(981) 评论(0) 推荐(0) 编辑