单击自身以及单击其他按钮时,如何获取元素以重新设置属性值?
P粉652495194
P粉652495194 2024-03-28 14:38:32
[HTML讨论组]

我有一些普通的 JavaScript 可以监听点击,当点击时,会发生四件事:

  1. “表单打开”类已添加到按钮
  2. “aria-expanded”属性设置为“true”
  3. 显示之前隐藏的 div。
  4. 按钮的“after”文本更改为“Close info”(这是根据按钮是否包含新类“form-opened”通过 CSS 控制的。)

当单击另一个按钮时,第一次单击的按钮会发生相反的情况,添加的类被删除,“aria-expanded”属性被重新设置为“false”,div 再次隐藏(再次设置为CSS)并且“之后”文本恢复为“阅读更多”。

但是,如果第二次单击同一个按钮,同时添加的类按预期删除,并且 div 再次隐藏,“aria-expanded”属性不会重新设置为“false”。谁能解释一下原因并告诉我应该做什么? (没有 jQuery,谢谢)。

const tips = Array.from(document.querySelectorAll('.toggle-button'));
tips.forEach((tip) => {
    tip.addEventListener('click', () => {
        tips
        .filter((f) => f !== tip)
        .forEach((f) => {
        f.setAttribute('aria-expanded', false);
        f.classList.remove('form-opened');
        });
        tip.setAttribute('aria-expanded', true);
        tip.classList.contains('form-opened');
        tip.classList.toggle('form-opened');
    });
});
.toggle-button ~ .tips {
  display: none;
}
button.toggle-button[aria-expanded="false"]:after {
  content: "Read more";
}
.toggle-button.form-opened ~ .tips {
  display: block;
  margin-bottom: 16px;
}
button.toggle-button[aria-expanded="true"]:after {
  content: "Close info";
  cursor: pointer;
}
.visually-hidden {
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
}
Here is some text that is to be revealed
Here is some text that is to be revealed
Here is some text that is to be revealed

我见过一些类似的查询,但不完全相同或非常旧,或者它们使用 jQuery。

P粉652495194
P粉652495194

全部回复(1)
P粉509383150

单击一个按钮只会将所有其他按钮的 aria-expanded 属性设置为 false。您还必须切换当前按钮的状态:

const tips = Array.from(document.querySelectorAll('.toggle-button'));
tips.forEach((tip) => {
    tip.addEventListener('click', () => {
        tips
            .filter((f) => f !== tip)
            .forEach((f) => {
                f.setAttribute('aria-expanded', false);
                f.classList.remove('form-opened');
            });
        
        // Toggle both aria-expanded attribute and form-opened class
        tip.setAttribute(
            "aria-expanded",
            tip.getAttribute("aria-expanded") == 'true' ? 'false' : 'true'
        );
        tip.classList.toggle('form-opened');
    });
});
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号