如何在单击php中的特定行后获取特定行值表元素

时间:2017-04-14 06:56:11

标签: php html mysql

this is table after clicking on date i want this date in php

<table border="1">
  <tr>
    <td>1</td>
    <td>value</td>
  </tr>
  <tr>
    <td>1</td>
    <td>value</td>
  </tr>
</table>

我想通过点击php中的那些来获取特定行的表值,我想在php中使用这些值因为我想使用这些值从数据库表中获取数据并显示从表中的数据库获取的数据同页

1 个答案:

答案 0 :(得分:2)

&#13;
&#13;
$(document).ready(function(){

		$(".table_row").click(function(e){
		  var value=$(e.target).text();
		  alert(value);
		});
});
&#13;
&#13;
&#13;

Ashok,试试这个,我觉得它适合你,但它会在你点击它的行上给出一个值。