欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Js網(wǎng)頁(yè)另存為實(shí)現(xiàn)代碼

 更新時(shí)間:2010年09月25日 01:30:04   作者:  
Js實(shí)現(xiàn)網(wǎng)頁(yè)另存為,點(diǎn)擊按鈕即可實(shí)現(xiàn),網(wǎng)頁(yè)代碼。
演示代碼:

[Ctrl+A 全選 注:引入外部Js需再刷新一下頁(yè)面才能執(zhí)行]

上面的代碼只能在IE內(nèi)核瀏覽器下使用,不過(guò)在具體的上面的保存代碼功能,可以參考下面的代碼。
復(fù)制代碼 代碼如下:

function runCode(obj) {
var winname = window.open('', "_blank", '');
winname.document.open('text/html', 'replace');
winname.opener = null // 防止代碼對(duì)父頁(yè)面修改
winname.document.write(obj.value);
winname.document.close();
}
function saveCode(obj) {
var winname = window.open('', '_blank', 'top=10000');
winname.document.open('text/html', 'replace');
winname.document.write(obj.value);
winname.document.execCommand('saveas','','code.htm');
winname.close();
}

function oCopy(obj){
obj.select();
js=obj.createTextRange();
js.execCommand("Copy");
alert("腳本之家提示:代碼已經(jīng)被成功復(fù)制!");
}

相關(guān)文章

最新評(píng)論