gpt4 book ai didi

javascript - 通过 Javascript 将属性添加到现有的 div 标签

转载 作者:行者123 更新时间:2023-11-30 11:23:00 26 4
gpt4 key购买 nike

我在 WordPress 网站上工作。

我想做的就是通过 javascript 将属性 onclick="off() 添加到现有的 div 类中(以便在加载站点时 div 始终具有此属性)。内容我使用的插件会自动创建 div,因此无需每次都编辑源代码,这似乎是一个不错且快速的解决方案。

现在我正在尝试这个,但它不起作用(我对 js 几乎一无所知):

function myfunction() {
document.getElementById("#content_al").setAttribute("onclick","off")
}

我阅读了很多主题,但没有成功,任何人都可以帮助我 :)?

最佳答案

    setAttribute 中的
  • off 应该是 off()
  • 不要在 document.getElementById("#content_al") 中传递 #,而是传递普通 ID,即 content_al

function myfunction() {
document.getElementById("content_al").setAttribute("onclick", "off()")
}

function off() {
console.log("clicked on off!");
}

myfunction();
<div id="content_al"> Some Content </div>

关于javascript - 通过 Javascript 将属性添加到现有的 div 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49107072/

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