WEB 클라이언트 페이지 인쇄
4669 단어 Web
function PreviewPrint()
{
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.location.href = window.location.href;
window.parent.returnValue='0';
window.parent.close();
}
function PreviewPrintCancel()
{
window.parent.returnValue='0';
window.parent.close();
}
function CloseWin()
{
window.parent.returnValue='1';
window.parent.close();
}
function DoNothingAndCloseWin()
{
window.parent.returnValue='DoNothing';
}
//<script language="javascript">
//function printsetup(){
////
//wb.execwb(8,1);
//}
//function printpreview(){
////
//
//wb.execwb(7,1);
//
//}
//function printit()
//{
//if (confirm(' ?')){
//wb.execwb(6,6)
//}
//}
//</script>
//<OBJECT classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"
//height=0 id=wb name=wb width=3></OBJECT>
//<input class="ipt" type=button name= button_print value=" "
//onclick =" javascript :printit();">
//<input class="ipt" type=button name=button_setup value=" "
//onclick =" javascript : printsetup();">
//<input class="ipt" type=button name=button_show value=" "
//onclick="javascript:printpreview();">
//<input class="ipt" type=button name= button_fh value=" "
//onclick ="javascript:window.close();">
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fortinet FortiWeb Web Application Firewall Policy BypassFrom: Geffrey Velasquez Date: Wed, 2 May 2012 20:33:23 -0500...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.