|
-
-
- $(document).ready(function(){
-
- });
-
-
- //改变输入框颜色获取焦点
- 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(){
-
- var order_no = $("#order_no").val();
-
- var phone_no = $("#phone_no").val();
- var phoneRe =/^1[3|4|5|7|8]\d{9}$/;
- if(order_no =='') {
- alert('请输入订单号!');
- return;
- }else if(phone_no == ''){
- alert('请输入手机号!');
- return;
- }else if(!phoneRe.test(phone_no)){
- alert('请输入正确的手机号!');
- return;
- }
- $.ajax({
- url:'./zz_wxsct/Model/order/bind.php', //请求地址
- type: "post", //请求方式
- data:{
- order_no:order_no,
- phone_no:phone_no
- },
- dataType: "json",
- success: function (data) {
- console.log(data);
- if(data.code == 0){
- alert("绑定成功");
- }else{
- alert(data.info);
- }
- }
- });
- }
|