最新的Web开发教程
 

onclick事件

事件对象参考 事件对象

执行JavaScript的一个按钮被点击时:

<button onclick="myFunction()">Click me</button>
试一试»

更多"Try it Yourself"下面的例子。


定义和用法

当用户点击一个元件上发生的onclick事件。


浏览器支持

事件
onclick

句法

在HTML:

在JavaScript:

object .onclick=function(){ 试一试»

在JavaScript中,使用addEventListener()方法:

object .addEventListener("click", myScript );
试一试»

注意: addEventListener()在Internet Explorer 8和更早版本不支持的方法。


技术细节

泡沫:
取消:
事件类型: 的MouseEvent
支持的HTML标签: 所有的HTML元素,除了:<基数>,<BDO>,点击<HEAD>,<HTML>,<IFRAME>,<META>,<param>的<SCRIPT>,<STYLE>和<title>
DOM版本: 2级事件
例子

更多示例

单击一个上<button>元素来显示当前日期,日期和时间:

<button onclick="getElementById('demo').innerHTML=Date()">What is the time?</button>
试一试»

单击一个上<p>元件到其文本颜色变为红色:

<p id="demo" onclick="myFunction()">Click me to change my text color.</p>

<script>
function myFunction() {
    document.getElementById("demo").style.color = "red";
}
</script>
试一试»

关于如何改变的颜色又如<p>通过点击它元件:

<p id="demo" onclick="myFunction(this, 'red')">Click me to change my text color.</p>

<script>
function myFunction(elmnt,clr) {
    elmnt.style.color = clr;
}
</script>
试一试»

点击一个按钮,一些文本从输入字段到另一个输入字段复制:

<button onclick="myFunction()">Copy Text</button>

<script>
function myFunction() {
    document.getElementById("field2").value = document.getElementById("field1").value;
}
</script>
试一试»

分配"onclick"事件到窗口对象:

window.onclick = myFunction;

// If the user clicks in the window, set the background color of <body> to yellow
function myFunction() {
    document.getElementsByTagName("BODY")[0].style.backgroundColor = "yellow";
}
试一试»

使用的onclick创建一个下拉按钮:

// Get the button, and when the user clicks on it, execute myFunction
document.getElementById("myBtn").onclick = function() {myFunction()};

/* myFunction toggles between adding and removing the show class, which is used to hide and show the dropdown content */
function myFunction() {
  document.getElementById("myDropdown").classList.toggle("show");
}

// Close the dropdown if the user clicks outside of it
window.onclick = function(event) {
  if (!event.target.matches('.dropbtn')) {

    var dropdowns = document.getElementsByClassName("dropdown-content");
    var i;
    for (i = 0; i < dropdowns.length; i++) {
      var openDropdown = dropdowns[i];
      if (openDropdown.classList.contains('show')) {
        openDropdown.classList.remove('show');
      }
    }
  }
}
试一试»

相关页面

HTML DOM参考: onfocus此事件

HTML DOM参考: onmousedown事件事件

HTML DOM参考: onmouseup事件


<事件对象