从列表页跳转到详情定位

//列表页
$(function(){ $(".mean-item").on("tap","a",function(){ // $.cookie("activeIndex",$(this).data("index")); var data=$(this).data("index"); sessionStorage.setItem('Key',data); window.location.href = '{:url('info/info')}' })
    //详情页
$(function(){ // // if ($(".listTim ").length > 0 ) // { // if ($.cookie("activeIndex") && $.cookie("activeIndex") != 0) // { // $($(".tabMe .listTim")[$.cookie("activeIndex")]).trigger("tap"); // }else{ // eval($(".itactive.active").data("func")); // } // bindStockSuggest(); // } ------------------------------------------------------------------------------------- if ($(".listTim").length>0) { if (sessionStorage['Key'] && sessionStorage['Key']!= 0) { $($(".tabMe .listTim")[sessionStorage['Key']]).trigger("tap"); }else{ eval($(".itactive.active").data("func")); } } }); </script>

  

 

posted @ 2017-07-26 14:38  \面朝阳光/  阅读(169)  评论(0编辑  收藏  举报