function saveFile(T,content)
{//保存
var filename=document.all(T).value;
var win=window.open('','','top=10000,left=10000');
win.document.write(document.all(content).innerText);
win.document.execCommand('SaveAs','',filename)
win.close();
}
更多信息请查看IT技术专栏