您的位置:首页 > Web前端 > JQuery

JQuery 球队选择案例

2013-07-03 11:06 330 查看
<!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>

<title></title>

<script src="../js/jquery-1.5.1.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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: