⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 props.html

📁 this gives details of the network programming
💻 HTML
字号:
<HEAD>
<TITLE>Netprog JavaScript Demos - Browser and Document Properties</TITLE>
</HEAD>
<BODY>

<SCRIPT LANGUAGE=JavaScript>
<!--

// Create a TABLE that contains all the properties of a named 
// object

function properties_table(objectname, object) {
  document.write("<TABLE BORDER=1 BGCOLOR=wheat><TR>");
  document.write("<TD style='font-size: 18pt; font-weight: bold' COLSPAN=2 ALIGN=CENTER>");
  document.write("Properties of the <CODE>"+objectname+"</CODE> object</TD></TR>");

  for (prop in object) {
     document.writeln("<TR><TH>"+prop+"</TH><TD>"+
     object[prop]+"</TD></TR>");
  }

  document.writeln("</TABLE><P>");
}
properties_table("document",document);

properties_table("navigator",navigator);
//  -->
</SCRIPT>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -