`

关于struts-jquey-plugin中<sj:submit/>和<s:form/>的使用

 
阅读更多

(一).FormSubmission.jsp页面:

<?xml version="1.0" encoding="utf-8"?>
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
<%@ taglib prefix="sjg" uri="/struts-jquery-grid-tags"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <title>Form 的使用</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<link href="styles/layout.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="/js/showcase.js"></script>
   <sj:head
   		locale="zh_CN"
    	loadAtOnce="true"
    	compressed="false"
    	jquerytheme="showcase"
    	customBasepath="themes"
    	loadFromGoogle="false"
    	debug="true"
    />
</head>
	<body>
		<strong>显示结果的DIV</strong>
	<div id="formResult" class="result ui-widget-content ui-corner-all"></div>
    
    <s:form id="form" action="echo" theme="simple" cssClass="yform">
        <fieldset>
            <legend>AJAX Form</legend>
	        <div class="type-text">
	            <label for="echo">Echo: </label>
	            <s:textfield id="echo" name="echo" value="Hello World!!!"/>
	        </div>
	        <div>
	            <sj:submit 
	            	id="formSubmit1"
	            	targets="formResult" 
	            	value="AJAX Submit" 
	            	indicator="indicator"
	            	button="true"
	            	/>

<!--内部定义了一个url和submit-->
 <s:url id="simpleecho" value="simpleEcho"/>
	            <sj:submit 
	            	id="formSubmit2"
	            	href="%{simpleecho}" 
	            	targets="formResult" 
	            	value="AJAX Submit 2" 
	            	indicator="indicator"
	            	button="true"
	            	/>
	        </div>
        </fieldset>
    </s:form>

    <img id="indicator" src="images/indicator.gif" alt="Loading..." style="display:none"/>    
    
	<div class="code ui-widget-content ui-corner-all">
	</body>
</html>

 (二)1.echo Action的写法:

package com.anchorajax;

import com.opensymphony.xwork2.ActionSupport;

public class Echo extends ActionSupport
{
    private String echo;
    private boolean escape = true;

    public boolean isEscape() {
        return escape;
    }

    public void setEscape(boolean escape) {
        this.escape = escape;
    }

    public String getEcho() {
        return echo;
    }

    public void setEcho(String echo) {
        this.echo = echo;
    }

    public String execute() throws Exception {

        return SUCCESS;
    }
}

 2.simpleEcho的Action写法:

package com.anchorajax;

import com.opensymphony.xwork2.ActionSupport;

public class SimpleEcho extends ActionSupport
{
    private String echo;
    private boolean escape = true;

    public boolean isEscape() {
        return escape;
    }

    public void setEscape(boolean escape) {
        this.escape = escape;
    }

    public String getEcho() {
        return echo;
    }

    public void setEcho(String echo) {
        this.echo = echo;
    }

    public String execute() throws Exception {

        return SUCCESS;
    }
}

 (三)struts.xml的配置:

 <!-- echoAction --> 		
   		<action name="echo" class="com.anchorajax.Echo">
   			<result name="success">/echo.jsp</result>
   		</action>
   		
   		<!-- SimpleEchoAction --> 	
   		<action name="simpleEcho" class="com.anchorajax.SimpleEcho">
   			<result name="success">/SimpleEcho.jsp</result>
   		</action>

 (四)1.echo.jsp页面:

<%@ taglib prefix="s" uri="/struts-tags"%>
<p>Echo : <s:property value="echo" escape="%{escape}"/></p>

      2.SimpleEcho.jsp页面:

<%@ taglib prefix="s" uri="/struts-tags"%>
<s:property value="echo" escape="%{escape}"/>

 (五)显示界面:


 


  • 大小: 5.8 KB
分享到:
评论

相关推荐

    jquery和struts2的整合

    &lt;script src="/struts2-jquery-plugin/js/struts2-jquery-plugin.js"&gt;&lt;/script&gt; &lt;link rel="stylesheet" href="/struts2-jquery-plugin/css/struts2-jquery.css" /&gt; ``` (4) **使用jQuery与Struts2交互**:利用...

    第3章_Struts2标签库详解与AJAX技术应用.rar

    1. `struts2-jquery-plugin`:这是一个流行的Struts2 AJAX插件,提供了许多预定义的AJAX行为和标签,如`sj:ajax`、`sj:autocompleter`等。 2. `&lt;sj:head&gt;`:此标签用于引入jQuery库和相关的JavaScript文件。 3. `...

    ajaxtags完整实例

    2. **导入依赖**:在JSP页面中,通过`&lt;%@ taglib prefix="s" uri="/struts-tags"%&gt;` 和 `&lt;%@ taglib prefix="sj" uri="/struts-jquery-tags"%&gt;` 导入所需的标签库。 3. **设置主题**:为了使用AjaxTags,需要在页面...

    struts2+ajax+jquery

    在这个"struts2+ajax+jquery"的主题中,我们将深入探讨如何利用Struts2、jQuery和Ajax技术实现Web页面的异步交互。 首先,Struts2作为MVC框架,它的核心是Action,它负责处理用户的请求,并通过配置的Result返回...

    sturts ajax

    1. **Display Tag Library**:Struts2提供了丰富的显示标签,如`&lt;s:property&gt;`用于显示模型对象的属性,`&lt;s:form&gt;`用于创建表单,`&lt;s:submit&gt;`用于提交表单,`&lt;s:textarea&gt;`、`&lt;s:textfield&gt;`等用于创建输入控件。...

    struts2的一个ajax

    这通常涉及到对JSP页面和CSS样式的修改,以及使用Struts2提供的标签库,如`s:url`, `s:submit`, 和`s:form`等。 综上所述,这个项目利用Struts2、Ajax、Hibernate和Spring构建了一个具有客户端验证功能的Web应用,...

Global site tag (gtag.js) - Google Analytics