HTMLElement:click() 方法
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
语法
js
click()
参数
无。
返回值
无(undefined
)。
示例
当鼠标移动过复选框时模拟鼠标点击事件:
HTML
html
<form>
<input
type="checkbox"
id="myCheck"
onmouseover="myFunction()"
onclick="alert('发生点击事件')" />
</form>
JavaScript
js
// 当鼠标滑过(mouse-over)执行 myFunction
function myFunction() {
document.getElementById("myCheck").click();
}
规范
Specification |
---|
HTML Standard # dom-click-dev |
浏览器兼容性
BCD tables only load in the browser