87,964
社区成员
发帖
与我相关
我的任务
分享
<script>
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>");
</script>