gpt4 book ai didi

javascript从onclick变成一个函数

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

我有链接点击的 javascript 代码:

 document.getElementById('giddy').onclick = function {
alert(this.href);
};

我想把它的功能部分分开......我有

 document.getElementById('giddy').onclick = poro(this);
function poro(yyyy) {
alert(yyyy.href);
};

但它不起作用(警告中显示未定义)...我做错了什么?

最佳答案

您不需要将 this 作为参数传递。 this 将成为函数调用时的上下文。你应该有:

document.getElementById('giddy').onclick = poro;
function poro() {
alert(this.href);
};

关于javascript从onclick变成一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9437050/

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