我在index.php页面上有这段代码:
$('.EditCustomer').load("page1.php");
<select name="date" id="date" class="form-control">
...options here...
</select>
我然后在page1.php
上将其更改为page1.php
为page1.php?date=1234
$(document).ready(function() {
$('#date').on('change', function() {
$('.EditCustomer').load("page1.php?date=" + $(this).val());
alert($(this).val());
});
});
但它没有这样做,因为它无法找到.EditCustomer
div
如何更改page1.php?
答案 0 :(得分:0)
您可以使用历史记录对象更改网址:
Manipulating the history/url of page
history.replaceState(null, null, "page1.php?date=" + $(this).val());
虽然我不确定这是你在找什么。