Blogger Information
Blog 33
fans 0
comment 0
visits 19966
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
javascript数组与事件--php培训九期线上班
取个名字真难
Original
672 people have browsed it

javascript数组与事件

  1. <div>
  2. <input type="text" id="intext" value="" name="intext" placeholder="输入你的成绩">
  3. <p id="on" onmousemove="on1()" >在鼠标指针移动到笑脸图片是触发。</p>
  4. <p id="on2" onmouseout="on2()"> 在鼠标指针移出笑脸图片是触发.</p>
  5. <p id="on3" oncontextmenu="right()" ondblclick="dbclick()">用鼠标右键点击我,然后再双击我取消.</p>
  6. <button onclick="click1()" id="click1">点击取消上面文字背景色</button>
  7. <select name="chose" id="chose" onchange="onc()">
  8. <option value="1">四川</option>
  9. <option value="2">广州</option>
  10. <option value="3">浙江</option>
  11. <option value="4">安徽</option>
  12. <option value="5">山东</option>
  13. <option value="6">广西</option>
  14. </select>
  15. </div>
  16. <script >
  17. // onchange 事件会在域的内容改变时发生
  18. function onc() {
  19. alert(document.getElementById('chose').value);
  20. }
  21. // onmouseover 事件会在鼠标指针移动到指定的元素上时发生
  22. function on1() {
  23. document.getElementById('on').style.background='blue';
  24. }
  25. // onmouseout 在鼠标指针移出指定的对象时执行Javascript代码
  26. function on2() {
  27. document.getElementById('on2').style.fontWeight='bold';
  28. document.getElementById('on2').style.background='red';
  29. }
  30. // onclick 当用户点击某个对象时调用的事件句柄。
  31. function click1() {
  32. document.getElementById('on').style.background='#fff';
  33. document.getElementById('on2').style.background='#fff';
  34. }
  35. // 在用户点击鼠标右键打开上下文菜单时触发
  36. function right() {
  37. document.getElementById('on3').style.background='yellow';
  38. }
  39. // 用户双击某个对象时调用的事件
  40. function dbclick() {
  41. document.getElementById('on3').style.background='#fff';
  42. }
  43. // JavaScript Array 对象创建和赋值
  44. var cars=['a','b','c','d','e'];
  45. // 向数组的末尾添加一个或更多元素
  46. cars.push('f','g');
  47. console.log(cars);
  48. // 删除数组的最后一个元素并返回删除的元素。
  49. cars.pop();
  50. console.log(cars);
  51. // 删除并返回数组的第一个元素。
  52. cars.shift();
  53. console.log(cars);
  54. // 向数组的开头添加一个或更多元素
  55. cars.unshift('5','6');
  56. console.log(cars);
  57. // 在数组中添加或删除元素 - splice()
  58. cars.splice(2,3,'ee','ff','hhh','fsf');
  59. console.log(cars);
  60. </script>
Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post