这里我试图使用jquery获取在url中传递的查询字符串并将其传递给php函数
我在url中有id = 61作为查询字符串,我想使用jquery获取id值。
我该怎么做?
review.php?id=61
这是我的代码
$('#approve').click(function(){
var id = "product Approved"; //here i want to get the id value
alert(id);
jQuery.ajax({
type: "POST",
url: "update.php",
data: 'id='+id,
cache: false,
success: function(response)
{
alert("Record successfully updated");
}
});