function createHtml() {
try {
save_record("index1", $("#yhtcprediv").html());
} catch (e) {
alert(e);
}
}
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();
}
仅支持IE,亲测有效。
2020.08.26.0:37
`