很多網(wǎng)站實(shí)現(xiàn)了利用JS保存頁面中文本框內(nèi)容到本地,并另存為指定文件擴(kuò)展名與編碼類型的功能,特別是一些代碼教程,JS特效站上更是長見。如何利用JS實(shí)現(xiàn)這種功能的呢,下面給出了具體的實(shí)現(xiàn)代碼
首先建立HTML文件,具體代碼如下
<!doctype html> <html> <head> <meta charset="utf-8"> <title>無標(biāo)題文檔</title> </head> <body> <textarea id="code"> <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title></title> <style type="text/css"> a:hover span{font-weight:bold;color:#F00} </style> </head> <body> <a href="#" rel="external nofollow" >鼠標(biāo)移過來看看這個(gè)網(wǎng)址是否變顏色:<span>www.gxlcms.com</span></a> </body> </html> </textarea> <button onClick="doSave('code');">另存為</button>
頁面中包含一個(gè) textarea文本框和一個(gè) button按鈕,點(diǎn)擊按鈕時(shí)把文本框中內(nèi)容另存為 code.html
下面是實(shí)現(xiàn)功能的JS代碼
<script language="javascript"> function doSave(obj) { obj=document.getElementById('obj'); if (isIE()){//IE瀏覽器保存文本框內(nèi)容 var winname = window.open('', '_blank', 'top=10000'); winname.document.open('text/html', 'replace'); winname.document.writeln(obj.value); winname.document.execCommand('saveas','','code.htm'); winname.close();} else{ saveAs(obj,'code.html'); } } function saveAs(obj,filename){//chrome,火狐等現(xiàn)代瀏覽器保存文本框內(nèi)容 var a=document.createElement('a'); a.setAttribute('href','data:text/html;gb2312,'+obj.value); a.setAttribute('download',filename); a.setAttribute('target','_blank'); a.style.display="none"; obj.parentNode.appendChild(a); a.click(); } function isIE()//判斷瀏覽器類型 { if(!!window.ActiveXObject || "ActiveXObject" in window) return true; else return false; } </script>
在IE下利用了JS的 execCommand 的功能而在chrome等現(xiàn)代瀏覽器下這個(gè)功能的沒有 saveas 所以我們只能通過超鏈接標(biāo)簽<a>的一些特性來實(shí)現(xiàn)保存功能了,代碼中的文件名與擴(kuò)展名都可以隨意更改,如有問題你即時(shí)反饋我們
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com