小试牛刀之jquery+ajax+json

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>My JSP ‘index.jsp‘ starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<script type="text/javascript" src="jquery-1.7.2.js"></script>
<script type="text/javascript">
$(
function (){
//alert("asdf");
$.ajax({
url:"proviceServlet",
type:"get",
data:{"type":"provice"},
success:function (msg){
for(var i=0;i<msg.length;i++){

$("#provice").append("<option value="+msg[i].proviceID+">"+msg[i].proviceName+"</option>");
}

}

} );

$("#provice").change(
function (){

//alert("进入城市");
$("#city option:gt(0)").remove();
$.ajax({
url:"cityServlet",
type:"get",
data:{"type":"provice","proviceID":$("#provice").attr("value")},
dataType: "json",
success:function (msg){
for(var i=0;i<msg.length;i++){
$("#city").append("<option value="+msg[i].cityID+">"+msg[i].cityName+"</option>");
}
}

});

}
);

$("#city").change(
function (){

// alert("进入区域");
$("#area option:gt(0)").remove();

// alert($("#city").attr("value"));
$.ajax({
url:"areaServlet",
type:"get",
data:{"type":"area","cityID":$(‘#city‘).attr("value")},
success:function (msg){
for(var i=0;i<msg.length;i++){
$("#area").append("<option value="+msg[i].areaID+">"+msg[i].areaName+"</option>");
}
}

});
//alert($("#city").attr("value"));
}
);

//<--隐藏span-->
$("span").hide();

//<-- 提交表单-->
$("#create").click(
function (){
alert("提交表单");
//alert($("#form_1").serialize());成功,可行的方法之一,将此写入97行data中,
$.ajax({
url:"finalServlet",
type:"post",
data:{"proviceID":$("#provice").attr("value"),"cityID":$(‘#city‘).attr("value"),"areaID":$("#area").val()},
success:function (){
$(".success").show();
}

});
return false;
}
);

}
);
</script>
</head>

<body>
<form id="form_1">
<table align="center">
<tr>
<td>
<select id="provice" name="proviceID">
<option >--请选择省区--</option>
</select>
</td>
</tr>
<tr>
<td>
<select id="city" name="cityID">
<option >--请选择市区--</option>
</select>
</td>
</tr>
<tr>
<td>
<select id="area" name="areaID">
<option >--请选择县区--</option>
</select>
</td>
</tr>
<tr>
<td>
<input id="create" type="button" value="提交"/>
</td>
</tr>
<tr>
<td>
<span class="success" > 提交成功</span>
<span class="fail"> 提交失败</span>
</td>
</tr>
</table>
</form>
</body>
</html>

时间: 2024-11-08 19:13:43

小试牛刀之jquery+ajax+json的相关文章

Spring 接收转换 jquery ajax json数组字符串

1.ajax发送json字符串 </pre><p>组建对象</p><p></p><pre code_snippet_id="449843" snippet_file_name="blog_20140813_2_7927326" name="code" class="javascript">var student = new Object(); studen

如何构建ASP.NET MVC4&amp;JQuery&amp;AJax&amp;JSon示例

背景: 博客中将构建一个小示例,用于演示在ASP.NET MVC4项目中,如何使用JQuery Ajax. 直接查看JSon部分 步骤: 1,添加控制器(HomeController)和动作方法(Index),并为Index动作方法添加视图(Index.cshtml),视图中HTML如下: 输入你的姓名: <input type="text" id="txtName"/><br/> 输入你的年龄: <input type="t

php+jquery+ajax+json简单小例子

直接贴代码: Php代码: <html> <title>php+jquery+ajax+json简单小例子</title> <?php header("Content-Type:text/html;charset=utf-8"); ?> <head> <script type="text/javascript" src="http://code.jquery.com/jquery.min.j

Jquery ajax json 不执行success的原因 坑爹

最近在看jQuery的API文档,在使用到jQuery的ajax时,如果指定了dataType为json,老是不执行success回调,而是执行了error回调函数,极度郁闷.后面改为1.2.6版本可以执行. 然后继续下载了几个jquery版本,如1.3.2,1.4.0的,指定dataType为json都不能执行success回调,只有小于1.3版本的才能执行success回调. 最后去jquery的网站找到了在线的api文档看了下,地址:http://api.jquery.com/jQuery

asp.net中利用Jquery+Ajax+Json实现无刷新分页(二)

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="PageTest.aspx.cs" Inherits="renmai_PageTest" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xh

php+jquery+ajax+json的一个最简单实例

function ajaxTest(){    $username = $_POST['username'];$age = $_POST['age'];$job = $_POST['job'];$json_arr = array("username"=>$username,"age"=>$age,"job"=>$job);$json_obj = json_encode($json_arr);echo $json_obj;    

基于Jquery+Ajax+Json+高效分页

首先我们创建一般处理程序,来读取数据库中内容,得到返回值. 创建文件,GetData.ashx. 我这里是用的存储过程,存储过程会再下面粘出来,至于数据只是实例,你们可根据需求自行读取数据 代码如下: <%@ WebHandler Language="C#" Class="GetData"%> using System;using System.Web;using System.Data.SqlClient;using System.Data;using

Jsp&amp;JavaScript &amp;jQuery &amp;Ajax&amp;Json

jsp 用于页面的展示 javaScript 用于浏览器中的动态脚本语言,可以实现网页上的一些高级功能, 对页面进行渲染,实现一些逻辑 --数据验证处理, 页面动态效果,定时任务,跟用户交互,发送/接收服务端数据,,, JQuery 轻量级的js工具类,对js进行了封装,Query提供了一系列的Ajax函数,使得js和ajax使用更加方便 Ajax 一种基于js等的异步通讯技术,实现页面局部更新(客户端和服务器交换数据是局部的,而不是刷新整个页面),常用于前后台数据交互,提高了数据更新的速度,.

构建ASP.NET MVC4&amp;JQuery&amp;AJax&amp;JSon示例

<div> 输入你的姓名: <input type="text" id="txtName" /><br /> 输入你的年龄: <input type="text" id="txtAge" /><br /> <button type="button" id="btn1" ">提交</button>