index.js 367 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 var index = { init: function () { $('#btn_test').click(function () { index.mainReturn(); }); }, mainReturn: function () { var txt = $('#txt_phone').val(); if( txt != ""){ localStorage.setItem('phone',txt); //跳转主界面 window.location.href="main.html"; } } }