javascript判断用户浏览器插件安装情况的代码
javascript判断用户浏览器插件安装情况的代码
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:document.writeln("","i","名称","文件名","描述","类型数")for(i=0;i

复制代码 代码如下:

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>");

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类