这是在 Firefox 中执行此操作的一种方法。它在其他任何地方都不起作用afaik。为简单起见,我使用了 alert() 并同步“ajax”,但是对于任何 ajax lib,异步版本都是微不足道的。
主要的事情是让 firefox 的漂亮的 view-source html 返回,它指示行号、HTML 错误和标记 html 部分(如属性和内容)到语义包装器中。这是我知道在没有互联网连接的情况下在浏览器中验证 html 的唯一方法...
// sync url fetcher function:
function IO(a){var b=new XMLHttpRequest;b.open("GET",a,!1);b.send();return b.responseText}
// create a new iframe to show the source code:
var fr=document.createElement("iframe");
// when it loads, let's view it using a simple alert()
fr.onload=function(){
alert(win.document.documentElement.outerHTML);
document.body.removeChild(fr);
};
// now add the frame into the document:
document.body.appendChild(fr);
// now assign the view-source url to the frame to trigger it's onload()
url= "/"; //just use site's home page for this demo
fr.src="view-source:data:text/html,"+escape( IO( url ) );
哦,当然,这仅适用于您域上的 URL 或使用 cors 设置的 URL。