从PHP中的网格获取ID

时间:2018-10-06 05:36:53

标签: javascript php html

我正在使用Php进行后端开发。

我在HTML中有一个网格,其中包含一堆记录。

现在我想要的是,我想在点击时获得预订ID(点击事件已发生

java脚本功能)

具有超链接的数字(如下图所示。)

This is the java script function to get booking id  on click of booking Number

 $('.bu').on('click', function () {
                var Id = $(this).data("id");
                $.get( "mypage.php?id=" + Id );

                document.getElementById("idvalue").value = Id;
                 var inputdaata=document.getElementById("idvalue").value;

 **From above javascript already getting Booking id.

 Now i have to use that booking id in php.
 This is for grid in Html**

<td><a href="" name="abc"  
class ="bu"  data-toggle="modal" 
data-target="#myModal1"  
 data-id="<?php echo $json1[$i] 
['bookingid']; ?>"><?php echo 
 $json1[$i]['bookingNumber'];?> 
</a></td>

enter image description here

先谢谢了。

1 个答案:

答案 0 :(得分:0)

  
<script type="text/javascript">
	    function gocedula(text) {	

			var form_data = {
				is_ajax: 1,
				cedula: text
			};

			$.ajax({
				type: "POST",
				url: "getCedula.php",
				data: form_data,
				success: function(response) {
					window.location.replace("http://stackoverflow.com");
				}
			});
		
		}
	</script>
<a onclick="gocedula('.$valor.')">Booking Number</a>

在“其他”页面上使用

$_REQUEST["cedula"];