2013-06-19 42 views

回答

4
  • 不要給你的元素ID
  • 或者在鏈接

    $("a").click(function(e) { 
        e.preventDefault() 
    }); 
    
1

對於Click事件致電.preventDefault(),你應該使用:

的preventDefault();

event.preventDefault()方法停止發生 元素的默認操作。例如:從 防止一個提交按鈕提交表單從以下網址

查找更多關於它@w3schools : event.preventDefault()防止鏈接

用法:

$("a").click(function(event){ 
    event.preventDefault(); 
}); 
相關問題