gpt4 book ai didi

javascript - 如何选择 href ="#xyz"的所有 a 标签

转载 作者:行者123 更新时间:2023-12-02 20:32:28 26 4
gpt4 key购买 nike

使用纯javascript我可以选择所有带有href="#xyz"的标签。而且我也想在单击该元素时触发一些事件...

我该怎么做?

PS:纯javascript意味着不使用jquery或其他框架

最佳答案

for (i=0;i<=document.links.length;i++) {
if (document.links[i].href == '#xyz') {
// here you will have "selected only the ones with #xyz
// Just be careful with the test, it will require a http://..../ I believe
}
}

关于javascript - 如何选择 href ="#xyz"的所有 a 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3854463/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com