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

JavaScript code to determine user browser plug-in installation_javascript skills

WBOY
Release: 2016-05-16 18:12:34
Original
1182 people have browsed it
复制代码 代码如下:

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,
"
");
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template