gpt4 book ai didi

javascript - JQuery onclick 条件停止链接?

转载 作者:数据小太阳 更新时间:2023-10-29 04:56:39 26 4
gpt4 key购买 nike

我有一个链接:

链接

使用::

$('#myID').click(function(){
if($("#myCheckbox").is(":checked")) {
alert('Yes it is...'); //continue as normal
}
else {
alert('Not checked');
//exit do not follow the link
}

...

那么//exit 不跟随链接可能吗?

最佳答案

尝试使用 event.preventDefault()

$('#myID').click(function(e) {
if ($("#myCheckbox").is(":checked")) {
alert('Yes it is...');
}
else {
alert('Not checked');
e.preventDefault(); // this prevents the standard link behaviour
}
}

关于javascript - JQuery onclick 条件停止链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8789552/

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