1. 程式人生 > >JQ get請求 拼接 url 引數 (查詢條件)

JQ get請求 拼接 url 引數 (查詢條件)

//查詢拼接引數
function query_sample_order(){
	 var i_url="";
	    var condition= $('#query_sample_order_condition').val();//具體查詢條件
	    var begin_time=$('#indent_begin_time').val();//起始時間
        var new_time=$('#indent_new_time').val();//終止時間
		var chicun_height=$('#chicun_height').val();//高
		var chicun_width=$('#chicun_width').val();//寬
        if(begin_time.length!=0){
        if(!compareDate(begin_time,new_time)){
      	alert("起始時間大了!注意結至時間");
      	return false;
      	}
      	if(i_url.length!=0){
			i_url+="&begin_time="+begin_time;
      	}else{
      		i_url="begin_time="+begin_time;
      		}
        }
        if($.trim(new_time).length!=0){
			if(i_url.length!=0){
				i_url+="&end_time="+new_time;
			}else{
				i_url="end_time="+new_time;
      		}
        } 
		if($.trim(condition).length!=0){
			if(i_url.length!=0){
				i_url+="&condition="+condition;
			}else{
				i_url="condition="+condition;
      		}
        }
		if($.trim(chicun_height).length!=0){
			if(i_url.length!=0){
				i_url+="&chicun_height="+chicun_height;
			}else{
				i_url="condition="+condition;
      		}
        }
		if($.trim(chicun_width).length!=0){
			if(i_url.length!=0){
				i_url+="&chicun_width="+chicun_width;
			}else{
				i_url="chicun_width="+chicun_width;
      		}
        }
		if(i_url.length==0)
		{
			alert("請輸入查詢條件");
			return false;
		}
		 $.ajax({url:Api/query_sample_order?'+i_url,
            dataType:'json',
            success:function(data){
            //CreatDialog(data,'input_output_edit');
            }
            })
    }