我有一個鏈接:使用JQuery onclick條件停止鏈接?
鏈接
::
$('#myID').click(function(){
if($("#myCheckbox").is(":checked")) {
alert('Yes it is...'); //continue as normal
}
else {
alert('Not checked');
//exit do not follow the link
}
...
所以//退出不會跟隨鏈接可能嗎?