@Action ajax和jquery

看了几个星期的代码,如有所思,如有所悟。今天开始自己写几段代码,困难重重。面对莫名其妙问题,纠结,压抑。不说了,总结一下,以备以后看:
1、@Action的使用:
     首先:action必须继承com.opensymphony.xwork2.ActionSupport
     其次:import org.apache.struts2.convention.annotation.Action,和Result
其他的还算好理解。
    @Action( value = "/login", results={
        @Result( name = "success", location="/showAjax.jsp") })
    public String execute(){
        System.out.println( name + " " + password );
        return "success";
    }

2、ajax和jquery
包含两个js文件:
jquery.form.js和jquery.js
开始我加了一个jquery-1.4.2,纠结了许久。。这个后来被我删了。。。
jsp:
<form method="post" id="form">
     姓名:<input type="text" name="name" >
     密码:<input type="text" name="password" >
     <input type="button" value="提交" onclick="test.lw.submitForm();">
</form>
<br>
<div id="show">
      <s:include value="showAjax.jsp"></s:include>
</div>

js源码:
if ( typeof test == "undefined" ){ var test = {}; }
test.lw = {
    submitForm: function () {
        var options = {
            url : "login.action",
            success : function(data){
                $("#show").html(data);
            }           
        };       
        $("#form").ajaxSubmit(options);       
        return false;
    }
}
如此使用test.lw.submitForm(),  多级类,对于test必须要有if ( typeof test == "undefined" ){ var test = {}; }。否则无法找到js文件。我开始没有写,纠结了好久。

你可能感兴趣的:(apache,html,jquery,Ajax,jsp)