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-29 20:34 离线云 阅读(131) 评论(0) 推荐(0)
摘要:积不出原函数 阅读全文
posted @ 2021-07-29 17:35 离线云 阅读(6734) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-29 16:43 离线云 阅读(1841) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-28 21:01 离线云 阅读(27) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-28 18:18 离线云 阅读(30) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-27 11:54 离线云 阅读(588) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-26 22:53 离线云 阅读(67) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-26 16:48 离线云 阅读(54) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-26 16:42 离线云 阅读(28) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-26 16:21 离线云 阅读(1018) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-25 21:15 离线云 阅读(45) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-25 16:35 离线云 阅读(26) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-25 16:14 离线云 阅读(55) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-25 11:21 离线云 阅读(69) 评论(0) 推荐(0)
摘要:等价无穷小 泰勒公式 拉格朗日 阅读全文
posted @ 2021-07-22 19:19 离线云 阅读(197) 评论(1) 推荐(0)
摘要:拉格朗日中值定理 阅读全文
posted @ 2021-06-22 10:56 离线云 阅读(52) 评论(0) 推荐(0)
摘要:(一)、基本公式 (二)四则求导法则 看不懂 (三)复合求导法则 (四)反函数求导 (五)隐函数求导 (六)参数方程求导 未看009 阅读全文
posted @ 2021-06-21 15:09 离线云 阅读(510) 评论(0) 推荐(0)
摘要:等价无穷小 两个重要极限 notes 型一 求极限题型 1)先求和 2)夹逼定理 3)(重点) 型二 证明极限存在 notes 型三 不定型 精度够可以用等价无穷小 0/0 1的无穷大次方 无穷/无穷 洛必达 看不懂 33:34 阅读全文
posted @ 2021-06-20 14:56 离线云 阅读(469) 评论(0) 推荐(0)
摘要:极限 区分± 阅读全文
posted @ 2020-08-27 17:17 离线云 阅读(134) 评论(0) 推荐(0)
摘要:等价无穷小 等价无穷大 阅读全文
posted @ 2020-08-24 15:51 离线云 阅读(1637) 评论(0) 推荐(0)