本文转自http://blog.csdn.net/kaidishi/article/details/9494443,所有权利归原作者所有。
JavaScript代码
- $.ajax({
- type:"post",//相对于form的method
- url:"ajaxAction.action",0); background-color:inherit">//传送到的Action或URL地址
- async:true,0); background-color:inherit">//
- data:{"time":time},0); background-color:inherit">//如果要传递多个参数{”param1”:param1,”param2”:param2,”param3”:param3}
- dataType:"text",108); list-style:decimal-leading-zero outside; color:inherit; line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> success:function(data){//获取返回值
- document.getElementById("content").value=data;//你需要进行的业务逻辑操作
- },
- error:function(e){
- alert("验证失败!");
- }
- });
Struts.xml配置文件
[html]
copy