(一).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
分享到:
相关推荐
<script src="/struts2-jquery-plugin/js/struts2-jquery-plugin.js"></script> <link rel="stylesheet" href="/struts2-jquery-plugin/css/struts2-jquery.css" /> ``` (4) **使用jQuery与Struts2交互**:利用...
1. `struts2-jquery-plugin`:这是一个流行的Struts2 AJAX插件,提供了许多预定义的AJAX行为和标签,如`sj:ajax`、`sj:autocompleter`等。 2. `<sj:head>`:此标签用于引入jQuery库和相关的JavaScript文件。 3. `...
2. **导入依赖**:在JSP页面中,通过`<%@ taglib prefix="s" uri="/struts-tags"%>` 和 `<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>` 导入所需的标签库。 3. **设置主题**:为了使用AjaxTags,需要在页面...
在这个"struts2+ajax+jquery"的主题中,我们将深入探讨如何利用Struts2、jQuery和Ajax技术实现Web页面的异步交互。 首先,Struts2作为MVC框架,它的核心是Action,它负责处理用户的请求,并通过配置的Result返回...
1. **Display Tag Library**:Struts2提供了丰富的显示标签,如`<s:property>`用于显示模型对象的属性,`<s:form>`用于创建表单,`<s:submit>`用于提交表单,`<s:textarea>`、`<s:textfield>`等用于创建输入控件。...
这通常涉及到对JSP页面和CSS样式的修改,以及使用Struts2提供的标签库,如`s:url`, `s:submit`, 和`s:form`等。 综上所述,这个项目利用Struts2、Ajax、Hibernate和Spring构建了一个具有客户端验证功能的Web应用,...