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中使用这些值因为我想使用这些值从数据库表中获取数据并显示从表中的数据库获取的数据同页
答案 0 :(得分:2)
$(document).ready(function(){
$(".table_row").click(function(e){
var value=$(e.target).text();
alert(value);
});
});
&#13;
Ashok,试试这个,我觉得它适合你,但它会在你点击它的行上给出一个值。