到目前为止我的代码:
swal({
title: 'Successfully Registered!',
text: "Do you want to go to the Log In page?",
type: 'success',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, send me there!'
},
function(){
window.location.href= "http://example.com";
}
);
由于某种原因,window.location.href 不起作用,我尝试仅使用 location.href 和 if(isConfirm) 等。
我该怎么办?
JSFiddle:https ://jsfiddle.net/2dz868kd/