-2
<a class="track_this" href="http://www.google.com" target="_blank">google</a>
WORKS:jQuery的不能識別類選擇,但工作沒有它
jQuery(document).ready(function($){
$("a").click(function() {
$.post("http://example.com/clk.php",{URL:this.href});
return true;
});
});
不起作用:
jQuery(document).ready(function($){
$(".track_this").click(function() {
$.post("http://example.com/clk.php",{URL:this.href});
return true;
});
});
非常沮喪。任何幫助將不勝感激。
您通常希望避免類和id名稱中的下劃線。改爲使用連字符。 – Gavin
這兩個代碼都能正常工作..我的意思是,它被稱爲點擊事件。 https://jsfiddle.net/lbclucascosta/8bdq6p54/ –
@Gavin強調,雖然煩人的類型,是完全有效 – DelightedD0D