1、遍历tr,得到鼠标所在tr的索引值,然后用二楼所说的方法判断奇偶;
2、用jQuery方便很多,在选择器后面加上":even"便选择的是索引值为偶数的元素,加":odd"便是索引值为奇数的元素。
下面是实现的代码,包括jQuery的:
<html>
<head>
<title></title>
<script type="text/javascript" src="jquery/jquery-142js"></script>
<script type="text/javascript">
function changeStyle(elementId) {
var testTable = documentgetElementById("testTable")children[0];
for(var i = 0; i < testTablechildrenlength; i++) {
if(testTablechildren[i] == elementId) {
if(i % 2 == 1) //奇数
elementIdstylebackground = "red";
else //偶数
elementIdstylebackground = "blue";
}
}
}
//清除样式
function changeBack(elementId) {
elementIdstylebackground = "";
}
/
jQuery方法:
/
$(document)ready(function() {
$("#jqueryTable tr:even")mouseover(function() {
$(this)css("background", "red");
});
$("#jqueryTable tr:odd")mouseover(function() {
$(this)css("background", "blue");
});
$("#jqueryTable tr")mouseout(function() {
$(this)css("background", "");
});
});
</script>
</head>
<body>
<table id="testTable" border="1">
<tr onmouseover="changeStyle(this)" onmouseout="changeBack(this)">
<td>第</td><td>一行</td>
</tr>
<tr onmouseover="changeStyle(this)" onmouseout="changeBack(this)">
<td>第</td><td>二行</td>
</tr>
<tr onmouseover="changeStyle(this)" onmouseout="changeBack(this)">
<td>第</td><td>三行</td>
</tr>
<tr onmouseover="changeStyle(this)" onmouseout="changeBack(this)">
<td>第</td><td>四行</td>
</tr>
<tr onmouseover="changeStyle(this)" onmouseout="changeBack(this)">
<td>第</td><td>五行</td>
</tr>
</table>
<table id="jqueryTable" border="1">
<tr>
<td>第一行</td>
</tr>
<tr>
<td>第二行</td>
</tr>
<tr>
<td>第三行</td>
</tr>
<tr>
<td>第四行</td>
</tr>
<tr>
<td>第五行</td>
</tr>
</table>
</body>
</html>
<script src=">
windowonload = function(){
var trs = documentgetElementsByTagName('tr');
for(var i=0;i<trslength;i++)
{
var tds=trs[i]getElementsByTagName('td');
for(var j=0;j<tdslength;j++)
{
tds[j]onclick = function(){
alert(thisinnerHTML);
}
}
}
}
这样就可以了。不过要注意,js里面对应每一行有rowIndex这个值,但是对每个cell(就是你说的每一行里的每个列)就没有类似的东西了。
以上就是关于javascript怎样 获取表格奇数行偶数行全部的内容,包括:javascript怎样 获取表格奇数行偶数行、[急]用js或者jq获取table指定行的位置、JS 表格里获取行后获取行里列的每个值等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)