解决 Failed to load resource: the server responded with a status of 404 (Not Found) 问题

1.  $.get与$.post用法

问题:

        运行jsp网页报错: Failed to load resource: the server responded with a status of 404 (Not Found) 

解决 Failed to load resource: the server responded with a status of 404 (Not Found) 问题_第1张图片

回答:显示“servlet无法找到” ,是servlet路径问题。检查servlet的java文件xml中的标签路径、内容是否在对应。如果对应,检查这个index.jsp是否直接在项目文件下。

解决 Failed to load resource: the server responded with a status of 404 (Not Found) 问题_第2张图片

若存在于内部文件夹中,原始:$.get("/ActionServlet") 改为 $.get("/myTest/ActionServlet")  中注意加入项目名称。

分析:$.get()方法通过HTTP GET请求从服务器上请求数据。语法: $.get(URL,callback);

        $.post() 方法通过HTTP POST请求从服务器上请求数据。          $.post(URL,data,callback);

Get:必需的 URL 参数规定您希望请求的 URL;可选的 callback 参数是请求成功后所执行的函数名。

Post:必需的 URL 参数规定您希望请求的 URL;可选的 data 参数规定连同请求发送的数据;可选的 callback 参数是请求成功后所执行的函数名。

http://www.w3school.com.cn/jquery/jquery_ajax_get_post.asp

鸣谢:

XC YY两位师兄鼎力帮助改这种小错。

你可能感兴趣的:(运行代码的问题,记录)