Ajax入门例子

index.jsp

<body>
  <form name="myform">
	<input value="test" type="button" οnclick="test();" />
	<input value="text" name="datevalue" />
  </form>
  </body>
  <script>
  	//(1)获取对象实例
    var xmlHttp = GetXmlHttpObject();
	function test() {
		//(2)注意这里的url格式,<action path="/do/test"..的写法如下
		var url = "do/test.do";
		//(3)设定open参数
		xmlHttp.open("POST",url,true);
		//(4)设置状态改变时候的执行函数
		xmlHttp.onreadystatechange=setValue;
		xmlHttp.send(null);
	}

	function GetXmlHttpObject() {
		var xmlHttp = null;
		try {
			// Firefox, Opera 8.0+, Safari
			xmlHttp = new XMLHttpRequest();
		} catch (e) {
			// Internet Explorer
			try {
				xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
			} catch (e) {
				xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			}
		}
		return xmlHttp;
	}
	
	function setValue()
	{
	    //(5)成功接收之后的处理
		if(xmlHttp.readyState == 4)
		{
			document.myform.datevalue.value=xmlHttp.responseText;
		}
	}
</script>

 

struts_config.xml

  <action-mappings>
  	<action path="/do/test" type="com.test.TempAction"/>
  </action-mappings>

 

TempAction.java

@Override
	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response)
			throws Exception {
		PrintWriter pw = response.getWriter();
		SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
		String today = df.format(new Date());
		//(1)这里的print就是index.jsp中要获取的responseText
		pw.print(today);
		//(2)记得要flush
		pw.flush();
		//(3)如果是ajax的请求,这里不要返回页面,不然会将整个页面html源码赋值到responseText中
		return null;
	}
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值