我需要在12秒后将用户重定向到不同的页面,但只有一次。通过它们返回上一页的方式,它们将不会被重定向。我试图像这样使用cookies:
<script type='text/javascript'>
$(document).ready(function(){
if($.cookie('Visited') != 'yes'){
$.cookie('Visited', 'yes', { path: '/', expires: 1 });
window.location.href = "http://www.example.com/";
}
});
</script>