Bookmark and Share

Lee's 程序人生

HTML CSS Javascript XML AJAX ATLAS C# C++ 数据结构 软件工程 设计模式 asp.net Java 数字图象处理 Sql 数据库
  博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

JavaScript学习笔记

Posted on 2009-10-12 19:09  analyzer  阅读(177)  评论(0编辑  收藏  举报
JavaScript代码
  1. 对象属性    
  2. document.title //设置文档标题等价于HTML的<title>标签    
  3. document.bgColor //设置页面背景色    
  4. document.fgColor //设置前景色(文本颜色)    
  5. document.linkColor //未点击过的链接颜色    
  6. document.alinkColor //激活链接(焦点在此链接上)的颜色    
  7. document.vlinkColor //已点击过的链接颜色    
  8. document.URL //设置URL属性从而在同一窗口打开另一网页    
  9. document.fileCreatedDate //文件建立日期,只读属性    
  10. document.fileModifiedDate //文件修改日期,只读属性    
  11. document.fileSize //文件大小,只读属性    
  12. document.cookie //设置和读出cookie    
  13. document.charset //设置字符集 简体中文:gb2312    
  14. ---------------------------------------------------------------------    
  15. 对象方法    
  16. document.write() //动态向页面写入内容    
  17. document.createElement(Tag) //创建一个html标签对象    
  18. document.getElementById(ID) //获得指定ID值的对象    
  19. document.getElementsByName(Name) //获得指定Name值的对象    
  20. ---------------------------------------------------------------------    
  21.   
  22. images集合(页面中的图象)    
  23.   
  24. a)通过集合引用    
  25. document.images //对应页面上的<img>标签    
  26. document.images.length //对应页面上<img>标签的个数    
  27. document.images[0] //第1个<img>标签    
  28. document.images[i] //第i-1个<img>标签    
  29.   
  30. b)通过nane属性直接引用    
  31. <img name="oImage">    
  32. document.images.oImage //document.images.name属性    
  33.   
  34. c)引用图片的src属性    
  35. document.images.oImage.src //document.images.name属性.src    
  36.   
  37. d)创建一个图象    
  38. var oImage    
  39. oImage = new Image()    
  40. document.images.oImage.src="/1.jpg"    
  41. 同时在页面上建立一个<img>标签与之对应就可以显示    
  42.   
  43. <html>    
  44. <img name=oImage>    
  45. <script language="javascript">    
  46. var oImage    
  47. oImage = new Image()    
  48. document.images.oImage.src="/1.jpg"    
  49. </script>    
  50. </html>    
  51.   
  52. ----------------------------------------------------------------------    
  53.   
  54. forms集合(页面中的表单)    
  55.   
  56. a)通过集合引用    
  57. document.forms //对应页面上的<form>标签    
  58. document.forms.length //对应页面上<form>标签的个数    
  59. document.forms[0] //第1个<form>标签    
  60. document.forms[i] //第i-1个<form>标签    
  61. document.forms[i].length //第i-1个<form>中的控件数    
  62. document.forms[i].elements[j] //第i-1个<form>中第j-1个控件    
  63.   
  64. b)通过标签name属性直接引用    
  65. <form name="Myform"><input name="myctrl"></form>    
  66. document.Myform.myctrl //document.表单名.控件名    
  67.   
  68. -----------------------------------------------------------------------    
  69. <html>    
  70. <!--Text控件相关Script-->    
  71. <form name="Myform">    
  72. <input type="text" name="oText">    
  73. <input type="password" name="oPswd">    
  74. <form>    
  75. <script language="javascript">    
  76. //获取文本密码框的值    
  77. document.write(document.Myform.oText.value)    
  78. document.write(document.Myform.oPswd.value)    
  79. </script>    
  80. </html>    
  81. -----------------------------------------------------------------------    
  82. <html>    
  83. <!--Select控件相关Script-->    
  84. <form name="Myform">    
  85. <select name="oSelect">    
  86. <option value="1">1</option>    
  87. <option value="2">2</option>    
  88. <option value="3">3</option>    
  89. </select>    
  90. </form>    
  91.   
  92. <script language="javascript">    
  93. //遍历select控件的option项    
  94. var length    
  95. length=document.Myform.oSelect.length    
  96. for(i=0;i<length;i++)    
  97. document.write(document.Myform.oSelect[i].value)    
  98. </script>    
  99.   
  100. <script language="javascript">    
  101. //遍历option项并且判断某个option是否被选中    
  102. for(i=0;i<document.Myform.oSelect.length;i++){    
  103. if(document.Myform.oSelect[i].selected!=true)    
  104. document.write(document.Myform.oSelect[i].value)    
  105. else    
  106. document.write("<font color=red>"+document.Myform.oSelect[i].value+"</font>")    
  107. }    
  108. </script>    
  109.   
  110. <script language="javascript">    
  111. //根据SelectedIndex打印出选中的option    
  112. //(0到document.Myform.oSelect.length-1)    
  113. i=document.Myform.oSelect.selectedIndex    
  114. document.write(document.Myform.oSelect[i].value)    
  115. </script>    
  116.   
  117. <script language="javascript">    
  118. //动态增加select控件的option项    
  119. var oOption = document.createElement("OPTION");    
  120. oOption.text="4";    
  121. oOption.value="4";    
  122. document.Myform.oSelect.add(oOption);    
  123. </script>    
  124. <html>    
  125. -----------------------------------------------------------------------    
  126. <Div id="oDiv">Text</Div>    
  127. document.all.oDiv //引用图层oDiv    
  128. document.all.oDiv.style    
  129. document.all.oDiv.style.display="" //图层设置为可视    
  130. document.all.oDiv.style.display="none" //图层设置为隐藏    
  131. /*document.all表示document中所有对象的集合   
  132. 只有ie支持此属性,因此也用来判断浏览器的种类*/    

我要啦免费统计