|
-
- $(document).ready(function(){
- $("#loading_html").show();
- });
-
-
- //改变输入框颜色获取焦点
- //function choose_border_focus(index){
- //
- // $(index).parent().addClass("input_focus");
- // $(index).parent().removeClass("input_blur");
- //
- //}
- ////改变输入框颜色失去焦点
- //function choose_border_blur(index){
- //
- // $(index).parent().addClass("input_blur");
- // $(index).parent().removeClass("input_focus");
- //}
-
- //绑定订单
- function bind_orderno(index){
-
- var phone_no = $("#phone_no").val();
- var phoneRe =/^1[3|4|5|7|8]\d{9}$/;
- if(phone_no == ''){
- alert('请输入手机号!');
- return;
- }else if(!phoneRe.test(phone_no)){
- alert('请输入正确的手机号!');
- return;
- }
- $(index).html("绑定中...");
- $.ajax({
- url:base_api+ 'mytrip/tripbind', //请求地址
- type: "post", //请求方式
- data:{
- phone:phone_no
- },
- dataType: "json",
- success: function (data) {
- console.log(data);
- if(data.flag){
- $(".mengban").show();
- $(index).html("绑 定");
- }else{
- $(index).html("绑 定");
- alert(data.msg);
-
- }
- }
- });
- }
-
- function go_my_trip(){
- window.location.href="trip_list.html";
- }
- function quxiao(){
- $(".mengban").hide();
- }
|