<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.111cn.net/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>网页特效</title>
<script language="javascript">
function getrow(oelem) {
while (oelem) {
if (oelem.tagname.tolowercase() == "tr" && oelem.parentelement.tagname.tolowercase() == "tbody") {
return oelem;
}
if (oelem.tagname.tolowercase() == "table" || oelem.tagname.tolowercase() == "th") {
return false;
}
oelemoelem = oelem.parentelement;
}
}
</script>
</head>
<body>
<table width="200" border="1">
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>