<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>获取单元格坐标</title>
<script language="javascript">
<!--
function getCoordinate(obj){
var top = obj.offsetTop;
var left = obj.offsetLeft;
alert("X:"+ left +",Y:"+ top)
}
//-->
</script>
</head>
<body style="margin:0px;">
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="20%" onclick="getCoordinate(this)"> </td>
<td width="20%" onclick="getCoordinate(this)"> </td>
<td width="20%" onclick="getCoordinate(this)"> </td>
<td width="20%" onclick="getCoordinate(this)"> </td>
<td width="20%" onclick="getCoordinate(this)"> </td>
</tr>
<tr>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
</tr>
<tr>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
</tr>
<tr>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
</tr>
<tr>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
</tr>
<tr>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
<td onclick="getCoordinate(this)"> </td>
</tr>
</table>
</body>
</html>
[此贴子已经被作者于2007-4-13 16:59:16编辑过]