gpt4 book ai didi

javascript - 无法使用 onClick 获取 ID 名称?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:16:36 25 4
gpt4 key购买 nike

http://wthdesign.net/test/test.html

我想做的是将 id 名称附加到我的 url,但我得到的是“#undefined”?

我正在使用的脚本:

function generateUrl()
{
var currentId = $(this).attr('id');
document.location.hash = currentId;
console.log($(this));
}

在 html 中:

<a id="abc" onClick="generateUrl()" >this is an anchor btn</a>

最佳答案

<a id="abc" onClick="generateUrl(this)" >this is an anchor btn</a>


function generateUrl(elem)
{
var currentId = elem.id;
document.location.hash = currentId;

}

您使用“this”将元素传递给您的函数

关于javascript - 无法使用 onClick 获取 ID 名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15892340/

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