Ajax的简单使用方法

前端之家收集整理的这篇文章主要介绍了Ajax的简单使用方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文转自http://blog.csdn.net/kaidishi/article/details/9494443,所有权利归原作者所有。


JavaScript代码

[javascript] view plain copy
  1. @H_403_41@$.ajax({
  2. @H_403_41@
  3. @H_403_41@type:"post",//相对于form的method
  4. @H_403_41@url:"ajaxAction.action",0); background-color:inherit">//传送到的Action或URL地址
  5. @H_403_41@async:true,0); background-color:inherit">//
  6. @H_403_41@data:{"time":time},0); background-color:inherit">//如果要传递多个参数{”param1”:param1,”param2”:param2,”param3”:param3}
  7. @H_403_41@dataType:"text",108); list-style:decimal-leading-zero outside; color:inherit; line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> @H_403_41@success:function(data){//获取返回值
  8. @H_403_41@document.getElementById("content").value=data;//你需要进行的业务逻辑操作
  9. @H_403_41@},
  10. @H_403_41@error:function(e){
  11. @H_403_41@alert("验证失败!");
  12. @H_403_41@
  13. @H_403_41@}
  14. @H_403_41@});
  15. @H_404_152@


Struts.xml配置文件

[html] copy
    @H_403_41@<actionnameactionname="ajaxAction"class="myAction"method="ajaxAction"></action><!—-不设置返回值-->
  1. @H_403_41@
  2. @H_404_152@

Action.java方法

[java] copy
    @H_403_41@privateServletRequestrequest=ServletActionContext.getRequest();
  1. @H_403_41@privateHttpServletResponseresponse=ServletActionContext.getResponse();
  2. @H_403_41@publicvoidajaxTheNOCheck()throwsException{
  3. try{
  4. @H_403_41@StringMessage="返回字符串";
  5. @H_403_41@response.setCharacterEncoding("utf-8");//设置编码格式
  6. @H_403_41@PrintWriterwriter=response.getWriter();
  7. @H_403_41@writer.write(Message);//写入Message,返回值为Message里的值
  8. @H_403_41@writer.close();
  9. @H_403_41@}catch(Exceptione){
  10. @H_403_41@e.printStackTrace();
  11. @H_403_41@log.error("程序异常:",e);
  12. thrownewException(e);
  13. @H_403_41@}
  14. @H_403_41@}
  15. @H_404_152@
原文链接:https://www.f2er.com/ajax/164604.html

猜你在找的Ajax相关文章