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

把html頁面的部分內(nèi)容保存成新的html文件的jquery代碼

 更新時間:2009年11月12日 21:40:29   作者:  
把html頁面的部分內(nèi)容保存成新的html文件,用到了jquery的獲取指定id的內(nèi)容。然后保存代碼。
復(fù)制代碼 代碼如下:

//保存聊天記錄到本地
function save_record()
{
//取得當(dāng)前日期作為文件名
var time=new Date();
var filename=time.toLocaleDateString();
//獲取當(dāng)前頁面部分內(nèi)容
var record=$("#contentList").html();
//打開新窗口保存
var winRecord=window.open('about:blank','_blank','top=500');
winRecord.document.open("text/html","utf-8");
winRecord.document.write("<html><style>body,ul,li{margin:0px; padding:0px;list-style:none; font-size:12px;}</style><body>"+record+"</body></html>");
winRecord.document.execCommand("SaveAs", true, filename+".html");
winRecord.close();
}

相關(guān)文章

最新評論