1. 使用jquery
到jquery.com下載jquery.js當前版本是1.4.2
新建一個html頁面
代碼如下:
<!DOCTYPE html><BR><html lang="en"><BR><head><BR> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"><BR> <script type="text/javascript" src="<SPAN style="COLOR: #ff0000"><STRONG>jquery.js</STRONG></SPAN>"></script></PRE>
<PRE class=brush> <script type="text/javascript"><BR> <SPAN style="COLOR: #ff0000"> $(document).ready(function(){</SPAN><BR><SPAN style="COLOR: #ff0000"> $("a").click(function(event){</SPAN><BR><SPAN style="COLOR: #ff0000"> alert("As you can see, the link no longer took you to jquery.com");</SPAN><BR><SPAN style="COLOR: #ff0000"> event.preventDefault();</SPAN><BR><SPAN style="COLOR: #ff0000"> });</SPAN><BR><SPAN style="COLOR: #ff0000"> });</SPAN><BR> <BR> </script><BR></head><BR><body><BR> <a href="<A class="external free" href="http://jquery.com/">http://jquery.com/</A>">jQuery</a><BR></body><BR></html>
代碼解釋:
$(document).ready(function(){...})在頁面加載完時添加function()函數內容
$("a").click(function(event){...})設置a標簽的click事件函數
event.preventDefault()阻止原事件執行
代碼功能:點擊<a>標簽只彈出alert信息後,頁面並不跳轉到http://jquery.com/。
2. 添加和移除HTML class
首先在<head>中添加一些樣式,例如:
代碼如下:
<style type="text/css">
a.test { font-weight: bold; }
</style>
在script中使用addClass和removeClass來添加和移除HTML class,例如:
代碼如下:
$("a").addClass("test");//所有a標記粗體
$("a").removeClass("test");//取消所有a標記粗體
3.特效
jQuery提供了一些非常方便的特效
代碼如下:
$("a").click(function(event){
event.preventDefault();
$(this).hide("slow");
});
點擊<a>標簽後,標記慢慢消失
4.回調與函數
無參數回調
代碼如下:
$.get('myhtmlpage.html', myCallBack);
帶參數回調
代碼如下:
$.get('myhtmlpage.html', function(){
myCallBack(param1, param2);
});