单击按钮链接后直接进入链接页面,我可以进行加载屏幕吗?
就我在互联网上看到的内容而言,加载屏幕或等待屏幕通常用于提交.
这是您的基本示例.所以你想在重定向之前显示加载.
function trytoredirect(){
$('.divLoading').show();
setTimeout(redirect,3000);
// show loading in 3 secound before redirect this is example
}
function redirect() {
location.href = "https://www.stackoverflow.com";
}