到目前为止我的代码如下:
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://stackoverflow.com/questions/43616916
复制相似问题