<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>事件委托</title>
</head>
<body>
<div style="width: 500px;height: 300px;border: 2px solid tomato;border-radius: 5px;margin: 100px auto;padding: 20px;">
<ul id="oul" style="margin: 0;padding: 0;width: calc(100% - 20px);height: calc(100% - 20px);border: 2px solid gray;border-radius: 5px;padding: 10px;">
<li style="width: 100%;height: 30px;background: #999;list-style: none;border-radius: 5px;color: #fff;text-align: center;line-height: 30px;margin-bottom: 5px;">item_1</li>
<li style="width: 100%;height: 30px;background: #999;list-style: none;border-radius: 5px;color: #fff;text-align: center;line-height: 30px;margin-bottom: 5px;">item_2</li>
<li style="width: 100%;height: 30px;background: #999;list-style: none;border-radius: 5px;color: #fff;text-align: center;line-height: 30px;margin-bottom: 5px;">item_3</li>
<li style="width: 100%;height: 30px;background: #999;list-style: none;border-radius: 5px;color: #fff;text-align: center;line-height: 30px;margin-bottom: 5px;">item_4</li>
<li style="width: 100%;height: 30px;background: #999;list-style: none;border-radius: 5px;color: #fff;text-align: center;line-height: 30px;margin-bottom: 5px;">item_5</li>
<li style="width: 100%;height: 30px;background: #999;list-style: none;border-radius: 5px;color: #fff;text-align: center;line-height: 30px;margin-bottom: 5px;">item_6</li>
<li style="width: 100%;height: 30px;background: #999;list-style: none;border-radius: 5px;color: #fff;text-align: center;line-height: 30px;margin-bottom: 5px;">item_7</li>
<li style="width: 100%;height: 30px;background: #999;list-style: none;border-radius: 5px;color: #fff;text-align: center;line-height: 30px;margin-bottom: 5px;">item_8</li>
</ul>
</div>
<script type="text/javascript">
    var oul = document.getElementById('oul'); //不使用事件委托方式
    var this_li = oul.getElementsByTagName('li');
    for (var i = 0; i<this_li.length; i++) {
        this_li[i].onclick = function (ev) {
            console.log(this.innerHTML);
        }
    }
------------- 使用委托方法 -------------------
    var oul = document.getElementById('oul'); //使用事件委托方式
    oul.onclick = function (ev) {
console.log(ev)
        var ev = ev || window.event;
console.log(ev.target)
        var target = ev.target || evsrcElement;  // 获取节点
console.log(target)
        if(target.nodeName.toLowerCase() == 'li'){ //nodeName的意思获得DOM元素的节点名称 //toLowerCase()的方法用以是,把获取到的节点名称转换为小写 也可以直接用localName
            console.log(target.innerHTML)
        }
    }
</script>
</body>
</html>

在vue中实现事件委托

  ======== 

一、概念理解:
1、事件:HTML DOM 使 JavaScript 有能力对 HTML 事件做出反应。比如点击事件、鼠标移入/移出事件等。事件通常与函数配合使用,这样就可以通过发生的事件来驱动函数执行。
2、DOM 事件流:冒泡事件流、捕获事件流。
3、DOM 事件模型:捕获、目标、冒泡。

那什么是事件委托呢?

事件委托:即是,一个事件本来是要绑定到某个元素上,然而却绑定到了该元素的父(或祖先)元素上,利用事件冒泡原理,触发执行效果。

二、事件委托的优点:

那为什么要使用事件委托?事件委托有什么好处,以及使用时要注意什么?

事件委托大概有两个优点:
1、提高网页性能。
2、通过事件委托添加的事件,对后期生成的元素依然有效。

上面提到的第二点如何理解呢?

举个例子:现在页面上有个 ul,ul 里有三个 li,通过循环给每个 li 添加点击事件,发现三个 li 到可以正常触发点击事件了,然后通过 js 代码在 ul 里插入(append)两个 li,
再试着点击所有 li,发现前面三个 li 正常触发点击事件,后面新添加的两个 li 无法正常触发点击事件。

参考链接(https://blog.csdn.net/zjsfdx/article/details/78235131

  ========

在父元素上绑定点击事件

<div class="panel" @click="rowClick1($event)">
<li>1</li>
<li>2</li>
<li>3</li>
<a href="#"></a>
</div>

使用e.target可以获得点击时获取的所有属性与值,我们可以通过e.target.localName获取点击的标签名,来进行对比判断,相同则触发绑定事件

<script>
rowClick1(e){
console.log(e.target);
if(e.target.localName === 'li'){
console.log("触发事件1");
}else if(e.target.localName === 'a'){
console.log("触发事件2");
}
},
</script>

最新文章

  1. 【转】iOS UIApplication详解
  2. iOS 10、Xcode 8 遇到部分问题解决记录
  3. java分享第十九天(TestNg的IReporter接口的使用)
  4. fiddler监听127.0.0.1或localhost
  5. html5 canvas 笔记三(绘制文本和图片)
  6. C#实现插件式架构的方法
  7. 九度OJ 1512 用两个栈实现队列 【数据结构】
  8. 【模拟】Codeforces 699B One Bomb
  9. Sql自动生成字母加数字的随机数
  10. 返回某个界面——nav
  11. NDEF-NFC数据交换格式
  12. getline函数
  13. (大数据工程师学习路径)第二步 Vim编辑器----查找替换
  14. Binary Search Tree Iterator leetcode
  15. while循环学习之统计流量
  16. 服务器端配置nodejs环境(使用pm2进程管理运行)
  17. elasticsearch 安装 windows linux macOS
  18. 推荐一个spring cloud 学习路线,绝对合理化
  19. cocos v3.10 下载地址
  20. 【Scala学习之一】 Scala基础语法

热门文章

  1. Rancher 2.3.3发布!默认支持K8S 1.16
  2. 【每天一题】LeetCode 172. 阶乘后的零
  3. 代码的鲁棒性:链表中倒数第k个结点
  4. Dubbo简介与基本概念
  5. java基础题月考JSD1908(含答案和解析)
  6. 【Linux 命令】cp 命令详解
  7. Leetcode刷题笔记(Python 找出所有相加之和为n的k个组合,组合中只允许含有1-9的正整数,并且每种组合中不存在重复的数字。)
  8. WebRTC分支提交记录
  9. JavaBean动态添加删除属性
  10. WPF数据可视化-趋势图