使用 javascript 检测 IE6 上的 java/jre
我想知道除了使用Java部署工具包(getJRE())之外,是否还有其他方法可以确定IE6上是否安装了JRE。我尝试使用navigator.javaEnabled()
,但无论是否安装JRE它都会返回true。此外,navigator.plugins[i].name
在 IE6 上返回未定义的对象。
I want to know if there is an alternative way to find out if JRE is installed on IE6, besides using the Java deployment toolkit (getJRE()). I tried to use navigator.javaEnabled()
, but it returns true no matter if JRE is installed or not. Moreover, navigator.plugins[i].name
returns undefined object on IE6.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从小程序:
然后您需要使用 LiveConnect 从 javascript 获取该数据。
编辑:
我在这个 链接
From an applet:
Then you need to get that data from javascript using LiveConnect.
EDIT:
I founded a post with this method in this link
这看起来不太好看,但它在 ie6 上对我有用,你可以尝试捕获错误,然后甚至使用定义 java 对象的 var 来再次检查。
页面 RIA 部署建议
http://download.oracle .com/javase/6/docs/technotes/guides/jweb/deployment_advice.html
This isnt a nice looking but it works for me on ie6 you could try and catch if error and then even use the var defining the java object as well to check again.
there the page RIA Deployment Advice
http://download.oracle.com/javase/6/docs/technotes/guides/jweb/deployment_advice.html