You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

61 lines
1.3 KiB

  1. $(document).ready(function(){
  2. $("#loading_html").show();
  3. });
  4. //改变输入框颜色获取焦点
  5. //function choose_border_focus(index){
  6. //
  7. // $(index).parent().addClass("input_focus");
  8. // $(index).parent().removeClass("input_blur");
  9. //
  10. //}
  11. ////改变输入框颜色失去焦点
  12. //function choose_border_blur(index){
  13. //
  14. // $(index).parent().addClass("input_blur");
  15. // $(index).parent().removeClass("input_focus");
  16. //}
  17. //绑定订单
  18. function bind_orderno(index){
  19. var phone_no = $("#phone_no").val();
  20. var phoneRe =/^1[3|4|5|7|8]\d{9}$/;
  21. if(phone_no == ''){
  22. alert('请输入手机号!');
  23. return;
  24. }else if(!phoneRe.test(phone_no)){
  25. alert('请输入正确的手机号!');
  26. return;
  27. }
  28. $(index).html("绑定中...");
  29. $.ajax({
  30. url:base_api+ 'mytrip/tripbind', //请求地址
  31. type: "post", //请求方式
  32. data:{
  33. phone:phone_no
  34. },
  35. dataType: "json",
  36. success: function (data) {
  37. console.log(data);
  38. if(data.flag){
  39. $(".mengban").show();
  40. $(index).html("绑      定");
  41. }else{
  42. $(index).html("绑      定");
  43. alert(data.msg);
  44. }
  45. }
  46. });
  47. }
  48. function go_my_trip(){
  49. window.location.href="trip_list.html";
  50. }
  51. function quxiao(){
  52. $(".mengban").hide();
  53. }