如何使用 JAVASCRIPT 以编程方式检查应用程序是否已安装?
我有一个 ASPX 页面,其中有 javascript 代码。我想从我的 JavaScript 代码检查系统中是否安装了特定应用程序? 任何人都可以让我知道如何在 javascript 中实现这一目标吗?我想检查我的系统中是否安装了特定版本的 Flash Player?
(我的java脚本位于服务器端,它应该查找应用程序是否安装在客户端计算机中)
提前致谢。
I have an ASPX page within which I have javascript code. I want to check wheather a particular application is installed in a system or not from my JavaScript code?
Can any one kindly let me know how to achieve this in javascript. I want to check if a particular version of flash player is installed in my system or not?
(My java script is on server side & it should find if an application is installed in client machine or not)
Thanks IN Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,JavaScript 不在您的服务器端。因为它将在客户端被调用。
我建议使用 SWFObject 来确定是否安装了 Flash。我用它并且效果很好。
Well first of all, the javascript is not on your serverside. As it will be called on the client side.
I would recommend SWFObject to determine if Flash is installed or not. I use it and it works pretty well.