好的,所以我在hidden.bs.modal
触发 bootstrap3 模态事件时更改 url,这是一个示例
$(document).ready(function(){
$("#exampleModal").on('hidden.bs.modal', function () {
window.location = "http://example.com/example.php?test=1";
});
});
问题是当window.location
设置test
参数时没有传递。有什么建议么?