html下載本地
通過javascript 實(shí)現(xiàn)
index.html
<a href=# onclick="window.open('temp.html');return(false);">下載文件</a>
#######
temp.html //被下載文件
<Script language="javascript">
if (typeof(window.opener) != 'undefined') //判斷 打開方式的下載。 去掉會一打開文件就彈出下載框
{
document.execCommand('SaveAs');
window.close();
}
</Script>
################
<button onclick="javascript:document.execCommand('SaveAs');">保存本頁面</button>
相關(guān)文章
微信小程序中實(shí)現(xiàn)一對多發(fā)消息詳解及實(shí)例代碼
這篇文章主要介紹了微信小程序中實(shí)現(xiàn)一對多發(fā)消息詳解及實(shí)例代碼的相關(guān)資料,需要的朋友可以參考下2017-02-02微信小程序與php 實(shí)現(xiàn)微信支付的簡單實(shí)例
這篇文章主要介紹了微信小程序與php 實(shí)現(xiàn)微信支付的簡單實(shí)例的相關(guān)資料,需要的朋友可以參考下2017-06-06