jQuery 返回“未定义”试图找到href
我试图将其包装到一个函数中:
//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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题在于您正常调用
clickableDiv
,而不是将其绑定到事件。您从事件处理程序运行它,而不是将其设置为事件处理程序。这意味着this
未设置为该元素。您应该将该函数设置为事件处理程序。
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 thatthis
is not set to the element.You should set the function as the event handler instead.
您必须将对 DIV 的引用传递到
clickableDiv
函数中。更新:替代解决方案:
You have to pass the reference to the DIV into the
clickableDiv
function.Update: Alternative solution: