card.js 312 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 /** * Created by chenbiao on 2017/6/7. */ $(function () { $('.mon-vip').on('click',function () { //月卡 跳转url window.location.href="monthpay.html"; }); $('.year-vip').on('click',function () { //年卡 跳转url window.location.href="yearpay.html"; }); })