我有 HTML,我需要获取此 html 的页面源代码。
document.documentElement.outerHTML
或者
$.ajax({
async: true,
type: 'GET',
cache: false,
url: window.location.href,
success: function(data) {
alert(data);
}
});
正在工作,但它们显示原始来源。如果我更改 html(例如,通过 jQuery),他们不会阅读我的更改。
是否可以读取页面的当前来源?