[Exception... "'(¹Õ XMLHttpRequest.open öCP
³' when calling method: [nsIDOMEventListener::handleEvent]"  nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)"  location: "<unknown>"  data: no]Line 0

解决方案 »

  1.   

    你是不是在做jQuery的ajax请求啊
    是的话,检查下你个参数是否正确,返回值也是否正确。。
     success:function(msg){alert(msg);}
      

  2.   

    查看jQuery中ajax的参数设置是否正确。
      

  3.   

    他说要将文件拷贝到应用服务器上才行,我不知道怎么做。我这是跟着网上的视频做的,URL具体是什么我也不知道...
    $.get("http://127.0.0.1:8080/JQuery/UserVerify?userName=" + encodeURI(encodeURI(userName)),null,function(response){
    //3.接收服务器端返回的数据,填充到div中
    $("#result").html(response);
    });