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