当你的才华不能撑起你的野心时,就是你该选择学习的时候了!

js保存指定html

function save_record(filename, content) {
 //打开新窗口保存
 var winRecord = window.open('about:blank', '_blank', 'top=500');
 winRecord.document.open("text/html", "utf-8");
 winRecord.document.write(" <div class=\"introBox section package boxBg02\" id=\"yhtcprediv\">" + content + "</div>");         
 winRecord.document.execCommand("SaveAs", true, filename + ".html");
 winRecord.close();
 }

 

posted @ 2020-08-07 14:56  hofmann  阅读(725)  评论(0编辑  收藏  举报