当前位置:   article > 正文

JavaScript获取点击元素_js点击元素

js点击元素

JavaScript获取点击元素

JavaScript获取点击元素

<template>
  <div class="Index">
    <div><p>上一个元素</p></div>
    <div @click="clickMe" class="box">
      <p class="class1">1</p>
      <p class="class2">2</p>
      <p class="class3">3</p>
      <p class="class4">4</p>
      <p class="class5">5</p>
    </div>
    <div><p>下一个元素</p></div>
  </div>
</template>
<script>
export default {
  methods: {
    clickMe(e) {
      // 当前点击的元素
      console.log('当前点击的元素', e.target);

      // 事件绑定的元素
      console.log('事件绑定的元素', e.currentTarget);

      // 事件绑定的元素的第一个子元素
      console.log('事件绑定的元素的第一个子元素', e.currentTarget.firstElementChild);

      // 事件绑定的元素的最后一个子元素
      console.log('事件绑定的元素的最后一个子元素', e.currentTarget.lastElementChild);

      // 事件绑定的元素的前一个元素
      console.log('事件绑定的元素的前一个元素', e.currentTarget.previousElementSibling);

      // 事件绑定的元素的下一个元素
      console.log('事件绑定的元素的下一个元素', e.currentTarget.nextElementSibling);

      // 事件绑定的元素的class属性
      console.log('事件绑定的元素的class属性', e.currentTarget.getAttributeNode("class"));

      // 事件绑定的元素的父级元素
      console.log('事件绑定的元素的父级元素', e.currentTarget.parentElement);

      // 事件绑定的元素的前一个元素的第一个子元素的HTML值
      console.log('事件绑定的元素的前一个元素的第一个子元素的HTML值', e.currentTarget.previousElementSibling.firstElementChild.innerHTML);
    }
  }
};
</script>
<style lang="scss">
.box {
  p {
    width: 100px;
    height: 40px;
    border: 1px solid #000;
  }
}
</style>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57

结果
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/226693
推荐阅读
相关标签
  

闽ICP备14008679号