js如何獲網頁原碼?
復制代碼 代碼示例:
//取IE瀏覽器中頁面源碼
function getAllCode_IE()
{
alert(document.documentElement.outerHTML);
return document.documentElement.outerHTML;
}
//取火狐瀏覽器中頁面源碼
function getAllCode_FireFox()
{
return document.body.innerHTML.toString();
}
上一篇普通人最應該屯什么物資
下一篇dw圖片選中鏈接怎么弄