jquery获取文档的或某个元素的html 闲的没事凑活事的教学

// 获取文档的

// 这个是获取本文档可能被扩展插件和广告屏蔽器污染的html
$(":root").prop("outerHTML");
// 利用promise异步获取未被污染的文档
// 我这么写是为了方便用await优雅的写代码,用fetch也行
await new Promise(function (reslove) {
	$.get(location.href, function (data) {
		reslove(data);
	});
});
// 🆗,这就是更优雅的用fetch写的获取
await fetch(location.href).then(res => res.text())

// 获取元素的

// 也只有这一种方式
$(ele).prop("outerHTML");

啊啊啊,好水啊,寒假好无聊啊

posted @ 2023-01-27 21:51  月神的使者  阅读(80)  评论(0编辑  收藏  举报