js获取不到get方法 post方法 的返回值,该如何解决

js获取不到get方法 post方法 的返回值
$.get("http://service2.winic.org/Service.asmx/SendMessages?uid="+uid+"&pwd="+pwd+"&tos="+mob+"&msg="+msg+"&otime=",function(data){
         alert(data);
 })

请问是为什么 麻烦大神们 我急用js获取不到get方法 post方法 的返回值,该如何解决
------解决方案--------------------
有没有引用jquery.js?
确认一下你的文件编码和js文件编码一致?(也可以指定<script charset="utf-8" )
------解决方案--------------------
如果你提交的参数中有中文字符,那是肯定不行的

$.get("http://service2.winic.org/Service.asmx/SendMessages",{"uid":escape(uid),"pwd":escape(pwd),"tos":escape(mob),"msg":escape(msg),"otime":""},function(data){
         alert(data);
 })