- return false 相當於以下 3 個動作
(1) event.preventDefault();
(2) event.stopPropagation();
(3) 停止回調函數執行並立即返回。
<html>
<head>
<script type ="text/javascript" src ="/jquery/jquery.js"></script>
<script type ="text/javascript">
$(document).ready(function(){
$("a").click( function(event){
event.preventDefault();
});
});
</script >
</head>
<body>
<a href ="http://w3school.com.cn/">W3School</ a>
<p >preventDefault() 方法將防止上面的連結打開 URL。 </p>
</body>
</html>
|
沒有留言:
張貼留言