如果条件有效,否则条件不起作用。
(function($){
$(".single-product a").on("click", function(e){
var link = $(".single-product a").attr("href");
if(link == "#"){
e.preventDefault();
}else{
return true;
}
});
}(jQuery));
答案 0 :(得分:1)
$(document).on("click",".single-product a", function(e){
var link = $.trim($(this).prop("href"));
(link == "#") ? e.preventDefault() : '';
});
答案 1 :(得分:1)
使用attribute contains selector [name*=”value”]
:
<option></option>
&#13;
$('.single-product a[href*="#"]').on('click', function (e) {
e.preventDefault();
});
&#13;