card.js 312 Bytes
/**
 * 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";
    });
})