将Javascript值传递给PHP

时间:2014-11-28 10:17:12

标签: javascript php html

这是我在点击时获取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中回显这个值?

0 个答案:

没有答案