81,116
社区成员




function preview(){
document.getElementById("J_submit_form").style.display = "none";
document.getElementById("foota").style.display = "none";
bdhtml=window.document.body.innerHTML;
sprnstr="<!--startprint-->";
eprnstr="<!--endprint-->";
prnhtml=bdhtml.substr(bdhtml.indexOf(sprnstr)+17);
prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));
window.document.body.innerHTML=prnhtml;
window.print();
window.document.body.innerHTML=bdhtml;
document.getElementById("J_submit_form").style.display = "block";
document.getElementById("foota").style.display = "block";
}