網頁另存為二款js代碼
其實很多時間我們都需要把網頁的內容直接另存為,下面我們提供二款js另存為的網頁代碼吧。
<html>
<head>
<title>另存網頁</title>
</head>
<body>
<object classid="clsid:8856f961-340a-11d0-a96b-00c04fd705a2"
height="0" width="0" id=webbrowser></object>
<input type="button" value="另存網頁" onclick="webbrowser.execwb(4,1)">
</body>
</html>
方法二
<input type=button value=另存為 onclick=document.execcommand('saveas',false,'c:test.htm')>
方法三
<input name=button onclick=document.all.webbrowser.execwb(4,1) type=button value=另存為><object classid= clsid:8856f961-340a-11d0-a96b-00c04fd705a2 height=0 id=webbrowser width=0></object>
看一款另存為的實例
另存為指定檔或頁面
function savehtm(p_filename)
{
var winname = window.open('.. /upload/'+p_filename, '_blank', 'top=10000');
winname.document.execcommand('saveas','',p_filename);
winname.close();
}
//另存為當前頁面
<input type=button value=另存為htm onclick="document.execcommand('saveas','true','xrx.htm')">
<p align="center">
<input type=button value=另存為txt onclick="document.execcommand('saveas','true','xrx.txt')"></p>