<script type="text/javascript">
function getvoucher(id){
$.get("http://inactive/test.php?id=" + id, function(data,status){
return data;
});
}
</script>
<script type="text/javascript">
$("tr").click(function() {
window.location.href = $(this).find("voucher_id").attr("href");
});
</script>
在代码中,我试图让表格中的每一行都可以点击,当点击该行时,它会将它的凭证ID发送给数据,这样我就可以在数据中显示数据。对话框。但我不确定如何做到这一点。
答案 0 :(得分:0)
将代码包含在document
就绪函数中,同时将单击绑定到表中的td
$(function(){
$("table td").click(function() {
window.location.href = $(this).closest("tr").find("voucher_id").attr("href");
});
});