JQuery球队选择实例
本文实例讲述了JQuery球队选择。分享给大家供大家参考。具体如下:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>球队选择</title>
<scriptsrc="jquery-1.6.2.min.js"type="text/javascript"></script>
<scripttype="text/javascript">
$(function(){
$("#tableToSelecttr").css("cursor","pointer").mouseover(function(){
$(this).css("backgroundColor","gold");
$(this).siblings().css("backgroundColor","white");
})
.click(function(){
$(this).appendTo($("#tableSelected"));
});
});
</script>
</head>
<body>
待选择球队:
<tableid="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/>
选中的球队:
<tableid="tableSelected"></table>
</body>
</html>
希望本文所述对大家的jQuery程序设计有所帮助。