javascript判断用户浏览器插件安装情况的代码
时间:2020-10-17 10:41:55|栏目:JavaScript代码|点击: 次
复制代码 代码如下:
document.writeln("<TABLE BORDER=1><TR VALIGN=TOP>",
"<TH ALIGN=left>i",
"<TH ALIGN=left>名称",
"<TH ALIGN=left>文件名",
"<TH ALIGN=left>描述",
"<TH ALIGN=left>类型数</TR>")
for (i=0; i < navigator.plugins.length; i++) {
document.writeln("<TR VALIGN=TOP><TD>",i,
"<TD>",navigator.plugins[i].name,
"<TD>",navigator.plugins[i].filename,
"<TD>",navigator.plugins[i].description,
"<TD>",navigator.plugins[i].length,
"</TR>")
}
document.writeln("</TABLE>");
上一篇:兼容最新firefox、chrome和IE的javascript图片预览实现代码
栏 目:JavaScript代码
下一篇:Flash对联广告的关闭按钮讨论
本文标题:javascript判断用户浏览器插件安装情况的代码
本文地址:http://www.codeinn.net/misctech/12566.html