这是我在点击时获取rowIndex的javascript代码。
<script>
function myFunction(x)
{
alert("Row index is: " + x.rowIndex);
}
</script>
<table>
<tr onclick="myFunction(this)">
<td>Click to show rowIndex</td>
</tr>
</table>
现在我需要这个&#39; x.rowIndex&#39;在php code.so中使用的值如何在php中回显这个值?