这是我的第1页
<input class="form-control input-sm" placeholder="House Number" id="hhouseid" name="hhouseid" />
<button class="btn btn-success btn-sm" type="submit" id="house" name="house">Save and Proceed</button>
这是我的jquery
$('#house').click(function() {
var hhouseid = $('#hhouseid').val();
var datastring = '&hhouseid=' + hhouseid;
$.ajax({
type:'post',
url:'query/save.php',
data: datastring,
cache:true,
success:function(html){
alert('Records Sucessfuly Recorded');
window.location = 'add_member.php';
$('#houseid').val(hhouseid);
}
});
});
这是我的第2页
<input class="form-control input-sm" placeholder="House Number" id="houseid" name="houseid" />
我想在我的页面2中将hhouseid的值传递给我的第2页中的houseid。我有这个代码,但它不起作用。任何帮助接受tnx:D
答案 0 :(得分:0)
使用$('#houseid').val()
window.location = 'add_member.php';
也许你需要通过url:
将变量传递给add_member.php
window.location = 'add_member.php?hhouseid=' + hhouseid;
答案 1 :(得分:0)
在php代码中
添加
$hhouseid = $_GET['hhouseid'];
更改
$('#houseid').val(hhouseid);
要
$hhouseid