$('#xxxx').combobox({
           onChange:function(newValue,oldValue){
         $('#xxxx').combobox({
                width:'120',  
                url:'xxxx/xxxxx?xxxxx='+newValue+",
                valueField:'xxxxx',   
                textField:'xxxxx'
            }).combobox('clear'); 
         }
      });
combobox提交一直是get请求,我想更改为post请求,如何做?比较加method:'post'还是怎么样?method:'post'这个我实验了一下,没有实现效果。