首页 > 代码库 > js 三种事件的绑定
js 三种事件的绑定
第一种:前段常规绑定:
<button type="button" class="recolor" onclick="reCol(‘rowIndex‘,‘colIndex‘)">重新着色</button>
第2种:js绑定监听事件:
//添加监听器 table.addEventListener("click", display, false); } (generat()); //获取鼠标点击的行和列 function display(event) { var colIndex = null; var rowIndex = null; var element = event.srcElement || event.target; if (!element) return; if (element.tagName != "TD") return; colIndex = element.cellIndex; rowIndex = element.parentNode.rowIndex; console.log("row:" + rowIndex + ", col:" + colIndex); return rowIndex, colIndex;
}
第2种:js+“”on“”绑定事件:
document.onmouseup = function (event) { console.log(event.target + onm ouseup); tartgetTd = null; coltargetTd = null; resizeable = false; mousedown = false; colmousedown = false; colresizeable = false; document.body.style.cursor = ‘default‘; }
js 三种事件的绑定
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。