index.js 237 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 var index = { init: function () { $('#btn_test').click(function () { index.mainReturn(); }); }, mainReturn: function () { //跳转主界面 window.location.href="main.html"; } }