JavaScript HTML DOM 事件

来源:互联网 发布:软件模块设计总结 编辑:程序博客网 时间:2024/04/30 04:07

对事件做出反应

我们可以在事件发生时执行 JavaScript,比如当用户在 HTML 元素上点击时。

如需在用户点击某个元素时执行代码,请向一个 HTML 事件属性添加 JavaScript 代码:

onclick=JavaScript

HTML 事件的例子:

  • 当用户点击鼠标时
  • 当网页已加载时
  • 当图像已加载时
  • 当鼠标移动到元素上时
  • 当输入字段被改变时
  • 当提交 HTML 表单时
  • 当用户触发按键时

例子 1

例子:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title></head><body><script>function changetext(id){id.innerHTML = "谢谢";}</script><h1 onclick="changetext(this)">点击查看1</h1>  <br />-----------------------------------------------------------<br />    <h1 onclick="this.innerHTML='效果'">点击查看2</h1>  <br />-----------------------------------------------------------<br /></body></html>
效果图:


HTML 事件属性

如需向 HTML 元素分配 事件,您可以使用事件属性。

实例

向 button 元素分配 onclick 事件:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title></head><body><p>点击按钮就可以执行 <em>displayDate()</em> 函数。</p><button onclick="displayDate()">点击这里</button><p id="demo"></p><script>function displayDate(){document.getElementById("demo").innerHTML = Date();}</script> </body></html>

效果图:


使用 HTML DOM 来分配事件

HTML DOM 允许您通过使用 JavaScript 来向 HTML 元素分配事件:

实例

向 button 元素分配 onclick 事件:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title></head><body> <button id="myBtn">点击这里</button> <p id="demo1"></p> <script> document.getElementById("myBtn").onclick=function(){displayDate1()}; function displayDate1(){document.getElementById("demo1").innerHTML=Date();} </script></body></html>

onload 和 onunload 事件

onload 和 onunload 事件会在用户进入或离开页面时被触发。

onload 事件可用于检测访问者的浏览器类型和浏览器版本,并基于这些信息来加载网页的正确版本。

onload 和 onunload 事件可用于处理 cookie。

实例

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title></head><body onload="checkCookies()">  <script>  function checkcookies(){if(navigator.cookieEnabled == true){alert("已启用 cookie");}else{alert("未启用 cookie");}}    </script></body></html>

onchange 事件

onchange 事件常结合对输入字段的验证来使用。

下面是一个如何使用 onchange 的例子。当用户改变输入字段的内容时,会调用 upperCase() 函数。

实例

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title></head><body>  输入小写英文:<input type="text" id="fname" onchange="myfunction()" />  <script>  function myfunction(){var x=document.getElementById("fname");x.value = x.value.toUpperCase();}  </script></body></html>
效果图:

onmouseover 和 onmouseout 事件

onmouseover 和 onmouseout 事件可用于在用户的鼠标移至 HTML 元素上方或移出元素时触发函数。

实例

一个简单的 onmouseover-onmouseout 实例:

<div onmouseover="mOver(this)" onmouseout="mOut(this)" style="background-color:green;width:120px;height:20px;padding:40px;color:#ffffff;")>把鼠标移到上面  </div>  <script>  function mOver(obj){obj.innerHTML="改变的效果";}function mOut(obj){obj.innerHTML = "把鼠标移动到上面";}  </script>

效果图:

onmousedown、onmouseup 以及 onclick 事件

onmousedown, onmouseup 以及 onclick 构成了鼠标点击事件的所有部分。首先当点击鼠标按钮时,会触发 onmousedown 事件,当释放鼠标按钮时,会触发 onmouseup 事件,最后,当完成鼠标点击时,会触发 onclick 事件。

实例

一个简单的 onmousedown-onmouseup 实例:

<div onmousedown="mDown(this)" onmouseup="mUp(this)" style="background-color:green;color:#ffffff;width:90px;height:20px;padding:40px;font-size:12px;">请点击这里</div>  <script>function mDown(obj){obj.style.backgroundColor="#1ec5e5";obj.innerHTML="请释放鼠标按钮"}function mUp(obj){obj.style.backgroundColor="red";obj.innerHTML="请按下鼠标按钮"}</script>






0 0
原创粉丝点击