这是我用过的脚本,现在我必须在消息出现后重定向并点击该消息确定按钮
$('#save_scheduler').click( function() {
$.ajax({
url: "<?php echo site_uri('shopapp/scheduler_master'); ?>",
type: "post",
dataType: "json",
data: $('#SchedulerForm').serialize(),
success: function( retdata ) {
alert( retdata.msg ),
答案 0 :(得分:0)
您可以使用JavaScript重定向页面:
window.location.replace('http://newpageurl.com/');
<强>更新强>
如果您想要询问用户,请先使用confirm
:
if(confirm('Are you sure?')){
window.location.replace('http://newpageurl.com/');
}
答案 1 :(得分:0)
会是这样的。
alert(retdata.msg); window.location.href =“http://stackoverflow.com”;