轮牌的,当1#双击变红跳到后面的时候,其它列的1#全部变暗下来!再双击变黑后其它的列也自动变黑!每个号码代表一个员工。
------解决方案--------------------
能力有限,水平一般,让楼下的高手给你写吧
------解决方案--------------------
能力有限,水平一般,让楼下的高手给你写吧
=================================
有人会队型不?
------解决方案--------------------
这个可以用CSS实现啊,伪类.颜色.
------解决方案--------------------
<!doctype html>
<html>
<head>
<meta charset="gb2312">
<title>无标题文档</title>
<script type="text/javascript" src="jquery1.7.js"></script>
<script type="text/javascript">
$(document).ready(function(e) {
$("td").dblclick(function(e) {
if (!$(this).hasClass("active") && !$(this).hasClass("disable")){
$("td:contains('" + $(this).text() +"')").addClass("disable");
$(this).removeClass().addClass("active")
}
else if ($(this).hasClass("active")){
$("td:contains('" + $(this).text() +"')").removeClass();
}
});
});
</script>
<style type="text/css">
.active {color:red}
.disable {color:#999}
}
</style>
</head>
<body>
<table width="300" border="1">
<tr>
<th scope="row"> </th>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<th scope="row"> </th>
<td>1#</td>
<td>2#</td>
<td> </td>
<td>3#</td>
<td> </td>
</tr>
<tr>
<th scope="row"> </th>
<td>1#</td>
<td> </td>
<td> </td>
<td>3#</td>
<td> </td>
</tr>
<tr>
<th scope="row"> </th>
<td>1#</td>
<td>3#</td>
<td>1#</td>
<td>1#</td>
<td> </td>
</tr>
<tr>
<th scope="row"> </th>
<td>3#</td>
<td> </td>
<td>2#</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th scope="row"> </th>
<td>1#</td>
<td>3#</td>
<td> </td>
<td> </td>
<td>1#</td>
</tr>
</table>
</body>
</html>