用 jQuery?" />

如何更改 用 jQuery?

对于那些启用了 javascript 的用户,点击它们应该执行 OnClick()

对于那些禁用了 javascript 的用户,点击它们应该只是转到某个地方.html,

假设只有 $('#link') 可以访问,怎么办?

For those with javascript enabled,click on them should do OnClick()

For those with javascript disabled,click on them should just go to somewhere.html,

Suppose only $('#link') is accessible,how to do that?

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

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

发布评论

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

评论(3

夏至、离别 2024-08-12 12:57:57

像这样:

$('#link').click(function() { 
    //...
    return false;
});

通过编写return false,链接将不会被跟随。

如果禁用 Javascript,则不会添加点击处理程序,并且链接将正常运行。

Like this:

$('#link').click(function() { 
    //...
    return false;
});

By writing return false, the link will not be followed.

If Javascript is disabled, the click handler won't be added, and the link will behave normally.

冰雪梦之恋 2024-08-12 12:57:57

$("#link").bind("click", function(e){alert("clicked"); e.preventDefault(); return false;});

这将警告“已单击”,然后取消默认操作。如果 JavaScript 被禁用,则链接将被跟随。

$("#link").bind("click", function(e){alert("clicked"); e.preventDefault(); return false;});

This will alert "clicked" and then cancel the default action. If Javascript is disabled, the link is followed.

紫竹語嫣☆ 2024-08-12 12:57:57

使用 click 函数。将 return false 添加到函数末尾以防止超链接后面的默认点击操作:

$("#link").click(function() { onClick(); return false; });

Use the click function. Add return false to the end of your function to prevent the default action of the click, which is following the hyperlink:

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