当前位置:Gxlcms > JavaScript > javascript判断用户浏览器插件安装情况的代码_javascript技巧

javascript判断用户浏览器插件安装情况的代码_javascript技巧

时间:2021-07-01 10:21:17 帮助过:28人阅读

代码如下:

document.writeln("",
"")
for (i=0; i < navigator.plugins.length; i++) {
document.writeln("")
}
document.writeln("
i",
"
名称",
"
文件名",
"
描述",
"
类型数
",i,
"
",navigator.plugins[i].name,
"
",navigator.plugins[i].filename,
"
",navigator.plugins[i].description,
"
",navigator.plugins[i].length,
"
");

人气教程排行