我的代码:
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<%@ taglib prefix="sx" uri="/struts-dojo-tags" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    <sx:head/>
    <title>My JSP 'a.jsp' starting page</title>
    
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">    
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
  </head>  
  <body>   
<s:div id="div1">
<s:date name="time" format="yyyy-MM-dd HH:mm:ss"/>
</s:div>
<s:url id="ajaxTest" value="/a_ajax.action"/>
<sx:a id="link1" href="%{ajaxTest}" targets="div1" >
          Update Content
</sx:a>
<s:debug>
</s:debug>
  </body>
</html>