diff --git a/Application/Home/View/default/Home/landingPage.html b/Application/Home/View/default/Home/landingPage.html index a904f7cb3..367deed8d 100644 --- a/Application/Home/View/default/Home/landingPage.html +++ b/Application/Home/View/default/Home/landingPage.html @@ -620,7 +620,7 @@ var PhoneObj = { $("#getPhoneCode").on("click",function(){ //获取手机 var dom = $(this); - var phone = $('#phoneval').val(); + var phone = $('#phone-register-box').find('[name=mobile]').val(); PhoneObj.sendPhoneCode(phone,function(){ PhoneObj.countDown(dom); }); @@ -628,7 +628,7 @@ var PhoneObj = { $("#forgetGetPhoneCode").on("click",function(){ //获取手机 var dom = $(this); - var phone = $('#forgetPhoneval').val(); + var phone = $('#forget-box').find('[name=mobile]').val(); PhoneObj.sendPhoneCode(phone,function(){ PhoneObj.countDown(dom); });