Quantcast
Channel: w3cplus
Viewing all articles
Browse latest Browse all 1557

jQuery制作延迟重定向

$
0
0

使用jQuery实现延迟重定向的代码片段:

function delayer(){
  window.location = "https://www.w3cplus.com";
} // END FUNC
jQuery(document).ready(function(){
  setTimeout('delayer()', 10000);
});

Viewing all articles
Browse latest Browse all 1557

Trending Articles