有关JavaScript中获得table中某一行光标位置的问题
如题:本人刚学js,现在想得到当前光标所在的table中的行的id(各行id分别为i,i是每一行所在的行数),请问我有什么方法?急待中……...
如题:本人刚学js,现在想得到当前光标所在的table中的行的id(各行id分别为i,i是每一行所在的行数),请问我有什么方法?急待中……
展开
展开全部
<html>
<head>
<script>
var cell="";
function mm(str)
{
cell=str;
}
function me()
{
alert(cell);
}
</script>
</head>
<body>
<table id="t" name="t" border="2" width="300">
<tr>
<td id="1" onmousedown="mm(this.id)">111</td>
<td id="2" onmousedown="mm(this.id)">222</td>
<td id="3" onmousedown="mm(this.id)">333</td>
</tr>
<tr>
<td id="4" onmousedown="mm(this.id)">444</td>
<td id="5" onmousedown="mm(this.id)">555</td>
<td id="6" onmousedown="mm(this.id)">666</td>
</tr>
<tr>
<td id="7" onmousedown="mm(this.id)">777</td>
<td id="8" onmousedown="mm(this.id)">888</td>
<td id="9" onmousedown="mm(this.id)">999</td>
</tr>
</table><br>
<input type="button" value="fdsfsa" onclick="me()">
</body>
</html>
<head>
<script>
var cell="";
function mm(str)
{
cell=str;
}
function me()
{
alert(cell);
}
</script>
</head>
<body>
<table id="t" name="t" border="2" width="300">
<tr>
<td id="1" onmousedown="mm(this.id)">111</td>
<td id="2" onmousedown="mm(this.id)">222</td>
<td id="3" onmousedown="mm(this.id)">333</td>
</tr>
<tr>
<td id="4" onmousedown="mm(this.id)">444</td>
<td id="5" onmousedown="mm(this.id)">555</td>
<td id="6" onmousedown="mm(this.id)">666</td>
</tr>
<tr>
<td id="7" onmousedown="mm(this.id)">777</td>
<td id="8" onmousedown="mm(this.id)">888</td>
<td id="9" onmousedown="mm(this.id)">999</td>
</tr>
</table><br>
<input type="button" value="fdsfsa" onclick="me()">
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询