DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> Jquery的hide及toggle方法讓超鏈接慢慢消失
Jquery的hide及toggle方法讓超鏈接慢慢消失
編輯:JQuery特效代碼     
. 代碼如下:
$(this).hide("slow");

. 代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>hello world</title>
<script type="text/javascript" src="http://www.cssrain.cn/demo/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("a").click(function(){
$(this).hide("slow");
return false;
});
});
</script>

</head>

<body>
<a href="http://www.cssrain.cn">
Effects Module(效果模塊)
現在,只要你點擊超鏈接,超鏈接就會慢慢的消失。
“return false"表示保留默認行為,因此頁面不會跳轉。
</a>
<hr/>
<a href="http://www.baidu.com">我也是一個段落文本,單擊我也彈出hello world .---單擊我</a>
</body>
</html>

3、點擊text圖片消失
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved