jQuery 返回“未定义”试图找到href

发布于 2024-10-26 11:06:50 字数 340 浏览 2 评论 0原文

我试图将其包装到一个函数中:

//Entire Div Clickable
function clickableDiv(){
window.location = $(this).find("a").attr("href");
return false;
}

然后通过以下方式调用它:

$("div.promo1").click(function(){
clickableDiv();
});

但它返回一个网址: www.mywebsite.com/undefined

有什么想法我做错了吗?

谢谢。

I'm trying to wrap this into a function:

//Entire Div Clickable
function clickableDiv(){
window.location = $(this).find("a").attr("href");
return false;
}

and then call it by:

$("div.promo1").click(function(){
clickableDiv();
});

But it returns a url of: www.mywebsite.com/undefined

Any ideas what I'm doing wrong?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

悲凉≈ 2024-11-02 11:06:50

问题在于您正常调用 clickableDiv,而不是将其绑定到事件。您从事件处理程序运行它,而不是将其设置为事件处理程序。这意味着 this 未设置为该元素。

您应该将该函数设置为事件处理程序。

$("div.promo1").click(clickableDiv);

The trouble is that you're calling clickableDiv normally, rather than binding it to an event. You are running it from an event handler, rather than setting it as the event handler. This means that this is not set to the element.

You should set the function as the event handler instead.

$("div.promo1").click(clickableDiv);
梦醒灬来后我 2024-11-02 11:06:50
function clickableDiv(div) {
    window.location = $(div).find("a").attr("href");
}

$("div.promo1").click(function() {
    clickableDiv(this);
});

您必须将对 DIV 的引用传递到 clickableDiv 函数中。


更新:替代解决方案:

function clickableDiv() {
    window.location = $(this).find("a").attr("href");
}

$("div.promo1").click(clickableDiv);
function clickableDiv(div) {
    window.location = $(div).find("a").attr("href");
}

$("div.promo1").click(function() {
    clickableDiv(this);
});

You have to pass the reference to the DIV into the clickableDiv function.


Update: Alternative solution:

function clickableDiv() {
    window.location = $(this).find("a").attr("href");
}

$("div.promo1").click(clickableDiv);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文