//页面Js代码
JS代码
$('#previewPic').on('click', function () {
var YII_CSRF_TOKEN =$('#YII_CSRF_TOKEN').val();
$.post('index.php?r=shop/previewBanners', {YII_CSRF_TOKEN : YII_CSRF_TOKEN }, function(ret) {
if(ret.code == 200){
alert('发布成功!');
return false;
}
initData = ret.data;
var html = template("tmp",{list:ret});
document.getElementById("swiper").innerHTML=html;
swiper = new Swiper(".swiper-container",{
pagination : '.swiper-pagination',
loop:"true",
autoplay: 5000,
autoplayDisableOnInteraction:false
});
swiper.update();
}, 'json');
});