2016-08-03 106 views
0
<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的數據,這樣我就能顯示數據在對話框中。但我不確定如何去做。調用功能通過ID

+3

添加HTML代碼,此 – Tuhin

回答

0

總結你的代碼document準備功能,還結合點擊td

$(function(){ 
     $("table td").click(function() { 
      window.location.href = $(this).closest("tr").find("voucher_id").attr("href"); 
     }); 
});