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
添加HTML代碼,此 – Tuhin