html页面设置onClick事件可以在html中设置,也可以在js中设置,下面分别介绍。
在html中设置你的代码就是在html中设置的方法,这是测试页面,
现在html代码的元素中添加onclick
<input type="text" id="text" onClick="f()">
再在js代码中声明一个函数
function f(){
alert(1)
}
只在js中设置第二种方法是只在js中设置,这是测试页面
html代码可以更加纯粹,不用写onclick
<input type="text" id="text">
在js代码中,先找到这个元素,再去绑定一个事件
window.onload = function() {
document.getElementById("text").onclick = function() {
alert(1)
}
}
也可以实现这个效果
给自定义覆盖物添加了click事件后,页面跳转再跳回有覆盖物的页面时,点击事件失效了。之前是 div.onclick=function(){}
于是
var bugFlag=true
div.addEventListener("touchstart", function(e){
bugFlag = true
})
div.addEventListener("touchmove", function(e){
$timeout(function () {
bugFlag = false
},100) // 移动端的话需要延时
})
div.addEventListener("touchend", function(e){
if(bugFlag==true){
attribute(this.getAttribute('myId'),this.getAttribute('myTotal'),this.getAttribute('startCity'))
}
})
这样的话,拖动地图不会触发点击事件了。
eventType共有5种类型:
上述加粗的是经常会用到的事件类型
以 eventType=MouseEvents ,触发事件为 click 为例: