本文介绍了打印文件在IE-64bit中不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的所有人,

我正在使用以下代码来打印.pdf文件.它在IE32bit上可以正常工作,但在IE64bit上却不能. -错误消息:脚本错误..!

Dear All,

I am using following code to print .pdf file. Its working fine in IE32bit but not in IE64bit. - Error msg : Script Error..!

<html>
<head>
<script>
function doit() {
var x = document.getElementById("doodad");
//.document.plugins.whatever
x.click();
x.setActive();
x.focus();
x.print();
 }
</script>
</head>
<body>
lt;embed id="doodad" src ="D:\Documents and
Settings\ron\Desktop\eth_cli.pdf" width="550" height="550"
name="whatever">
<button  önclick="doit()">howdy</button>
</body>
</html>



请帮我解决这个问题.
-
YRishi



Plase help me on this.
-
YRishi

推荐答案


这篇关于打印文件在IE-64bit中不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 19:11