首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >带标签标签的EventListeners获取类

带标签标签的EventListeners获取类
EN

Stack Overflow用户
提问于 2020-10-08 01:13:38
回答 2查看 54关注 0票数 0

我有一个事件侦听器,它通过元素的类名获取元素,如果输入标记名与该类相同的话。它适用于第一个标签,但不适用于第二个标签。我是不是错误地使用了事件目标?见下文。

JS

代码语言:javascript
复制
let selected = true;
document.querySelector('label').addEventListener("click", function(e) {
  if (e.target.checked = selected) {
    let labelFor = document.querySelector('label').htmlFor;
    let inputId = document.getElementById(labelFor);
    let inputName = inputId.name;
    let path = document.getElementsByClassName(inputName)
    console.log(path);
  }
})

HTML

代码语言:javascript
复制
Formatted HTML:
<input type="radio" name="first" id="floor-1">
<label for="floor-1">first</label><br>
<input type="radio" name="second" id="floor-2">
<label for="floor-2">second</label>
<svg viewBox="0 0 300 300">
   <g class="first">
      <path d="M 10 10 H 90 V 90 H 10 L 10 10"/>
   </g>
   <g class="second">
      <path d="M 20 20 H 100 V 100 H 20 L 20 20" />
   </g>
</svg>

任何指导都是非常有帮助的。

EN

回答 2

Stack Overflow用户

发布于 2020-10-08 02:24:00

代码语言:javascript
复制
// since the handler is going to be associated
// with more than one html element, provide it
// as separate function which reduces overhead.
function handleControlStateChange(evt) {

  const elmControl = evt.currentTarget;
  const svgRoot = document.body.querySelector('svg');

  if (svgRoot && elmControl && elmControl.checked) {

    const pathContainer = svgRoot.getElementsByClassName(elmControl.name)[0];

    const elmPath = pathContainer && pathContainer.children[0];
    const pathValue = elmPath && elmPath.getAttribute('d');

    console.log(pathValue);
  }
}

// initialize event listeners, but for the
// "change" event of each checkbox control.
document.body.querySelectorAll('[type="checkbox"]').forEach(elm =>
  elm.addEventListener("change", handleControlStateChange)
);
代码语言:javascript
复制
<label>
  <!--
    provide a simpler stucture and thus, reduced html overhead as with
    `for` and `id` attributes, as well as with the code which handles
    the state changes of a checkbox-control.
  //-->
  <span class="label">first</span>
  <!--
    make use of a checkbox- instead of a radio-control since differently
    named radio-controls do not make sense because there will be no radio-
    group that contains both controls; thus each radio could not be unchecked.
  /-->
  <input type="checkbox" name="first"/>
</label>

<label>
  <span class="label">second</span>
  <input type="checkbox" name="second"/>
</label>

<svg viewBox="0 0 300 300">
  <g class="first"> 
    <path d="M 10 10 H 90 V 90 H 10 L 10 10"/>
  </g>
  <g class="second"> 
    <path d="M 20 20 H 100 V 100 H 20 L 20 20"/>
  </g>
</svg>

票数 1
EN

Stack Overflow用户

发布于 2020-10-08 02:08:50

这是意料之中的,因为document.querySelector('<CSS selector>')返回文档中与指定<CSS selector>匹配的第一个元素。

所以在你的情况下,

  • 它遇到#floor-1输入字段的标签
  • ,然后将事件侦听器单独附加到该字段。

如果您需要监听文件中的所有标签,请使用

代码语言:javascript
复制
document.querySelectorAll('label').forEach(eachLabelElem => 
   eachLabelElem.addEventListener("click",<your function logic here>)
)

请注意,事件侦听器将应用于HTML中存在的所有label

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/64249061

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档