Home  >  Article  >  Web Front-end  >  JavaScript code to determine user browser plug-in installation_javascript skills

JavaScript code to determine user browser plug-in installation_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:12:341120browse
复制代码 代码如下:

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,
"
");
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn