jQuery form插件的使用之处理server返回的JSON, XML,HTML数据_jquery

WBOY
Release: 2016-05-16 15:17:51
Original
1445 people have browsed it

废话不多说了,直接给大家贴代码了,具体代码如下所示:

   jQuery form插件的使用--处理server返回的JSON, XML,HTML数据     

Demo 8 : jQuery form插件的使用--处理server返回的JSON, XML,HTML数据

json方式返回

名称:
地址:
自我介绍:

xml方式返回

名称:
地址:
自我介绍:

html方式返回

名称:
地址:
自我介绍:

Copy after login

新建json.jsp文件:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% request.setCharacterEncoding("UTF-8");//防止乱码! String name = request.getParameter("name"); String address = request.getParameter("address"); String comment = request.getParameter("comment"); System.out.println(name + " - " +address + " - " +comment); out.println( "{ name : '" +name+ "' , address : '"+address+ "' ,comment : '"+comment+ "' }" ); %>
Copy after login

新建xml.jsp文件:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% request.setCharacterEncoding("UTF-8");//防止乱码! String name = request.getParameter("xmlname"); String address = request.getParameter("xmladdress"); String comment = request.getParameter("xmlcomment"); System.out.println(name + " - " +address + " - " +comment); response.setContentType("text/xml");//注意,由于你是以xml形式传递过来的,所以这里必须写。 out.print("<?xml version=\"1.0\" encoding=\"UTF-8\"?>"); out.print(""); out.print(""+name+""); out.print("
"+address+"
"); out.print(""+comment+""); out.print("
"); %>
Copy after login

新建一个html.jsp文件:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% request.setCharacterEncoding("UTF-8");//防止乱码! String name = request.getParameter("htmlname"); String address = request.getParameter("htmladdress"); String comment = request.getParameter("htmlcomment"); System.out.println(name + " - " +address + " - " +comment); out.println( "
"+name+" "+address+" "+comment+"
" ); %>
Copy after login

以上所述是小编给大家分享的jQuery form插件的使用之处理server返回的JSON, XML,HTML数据,希望对大家有所帮助。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!