需求:
第一次进入网站需要进入的是欢迎页(引导页),再次进入就直接进入主页了。
想到的是cookie 保持本地文件。
jquery cookie;(需要在页面引入jquery cookie插件)
附上部分代码参考:
$(function(){ //对浏览器的cookie进行判断,有cookie说明已经创建,这里取反直接进入主页 if(!$.cookie('hasWatch')){ $("#homeShufflingImage").append('<div class="swiper-slide" style="text-align: center; auto"><img src="../res/vankemobilestyle/images/guide01.jpg" width="100%"/></div>' +'<div class="swiper-slide" style="text-align: center; auto"><img alt="" src="../res/vankemobilestyle/images/guide02.jpg" width="100%" /></div>' +'<div class="swiper-slide" style="text-align: center; auto"><img alt="" src="../res/vankemobilestyle/images/guide03.jpg" width="100%" /></div>' +'<div class="swiper-slide" style="text-align: center; auto"><img alt="" src="../res/vankemobilestyle/images/guide04.jpg" width="100%" /></div>' +'<div class="swiper-slide" style="text-align: center; auto"><a href="/webMoblie/mbNewHouse" style="height:100%;"><img alt="" src="../res/vankemobilestyle/images/guide05.png" width="100%" /></a></div>' ); var swiper = new Swiper('.index_roll .swiper-container', { pagination: '.swiper-pagination', paginationClickable: true, centeredSlides: true, autoplayDisableOnInteraction: false, autoplay:false }); $(".swiper-slide img").height($(window).height());
//此处重点:创建jquery cookie $.cookie('hasWatch', 'ture', { expires: 100, path: '/' }); } else window.location.href ='/webMoblie/mbIndex'; })