我正在尝试打开一个模式,当您单击关闭按钮时,它会在同一页面上打开一个 url。我正在使用的代码是:
$(document).ready(function() {
//Show modal box
$('#openModal').click(
function() {$('.modal').show();}
);
//Hide modal box
$('#closeModal').click(
function() {$('.modal').hide();
"location.href='http://google.com'";}
);
});
有人吗?提前致谢!