欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JQuery球隊(duì)選擇實(shí)例

 更新時(shí)間:2015年05月18日 11:02:05   作者:永遠(yuǎn)愛好寫程序  
這篇文章主要介紹了JQuery球隊(duì)選擇實(shí)現(xiàn)方法,實(shí)例分析了jQuery中鼠標(biāo)事件與頁面元素相關(guān)操作技巧,需要的朋友可以參考下

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

<!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>球隊(duì)選擇</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>
待選擇球隊(duì):
<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 />
選中的球隊(duì):
<table id="tableSelected"></table>
</body>
</html>

希望本文所述對(duì)大家的jQuery程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論