萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> JQuery球隊選擇實例

JQuery球隊選擇實例

   本文實例講述了JQuery球隊選擇。分享給大家供大家參考。具體如下:

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 <!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=utf-8" /> <title>球隊選擇</title> <script src="jquery-1.6.2.min.js" type="text/javascript"></script> <script type="text/javascript"> $(function (){ $("#tableToSelect tr").css("cursor", "pointer").mouseover(function(){ $(this).css("backgroundColor", "gold"); $(this).siblings().css("backgroundColor", "white"); }) .click(function () { $(this).appendTo($("#tableSelected")); }); }); </script> </head> <body> 待選擇球隊: <table id="tableToSelect"> <tr><td>火箭</td><td>100分</td></tr> <tr><td>奇才</td><td>99分</td></tr> <tr><td>小牛</td><td>98分</td></tr> </table> <hr /> <hr /> 選中的球隊: <table id="tableSelected"></table> </body> </html>

  希望本文所述對大家的jQuery程序設計有所幫助。

copyright © 萬盛學電腦網 all rights reserved