IE中打印预览

来源:互联网 发布:mac automator流氓软件 编辑:程序博客网 时间:2024/05/05 16:08

<html>

<head>

<SCRIPT LANGUAGE=javascript>

<!--

function setPrint()

{

myprint.ExecWB(8,1);

}

function previewPrint()

{

myprint.ExecWB(7,1)

}

//-->

</SCRIPT>

</head>

<body>

<OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=myprint width=0>

</OBJECT>

<INPUT type="button" value="Set" id=button1 name=button1 onclick="setPrint();">

<INPUT type="button" value="Preview" id=button2 name=button2 onclick="previewPrint();">

</body>

</html>