e80df919
atao
init
|
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";
});
})
|