在我的jsp中,我有:
<s:url action="listarichiesteAjax.action" var="richiesteAjax" > <s:param name="messaggioUtente" value="messaggioUtente"></s:param> </s:url> <sx:div href="%{#richiesteAjax}" updateFreq="10000" preload="true">
这段代码每10秒刷新一次(从执行操作调用一个JSP)(调用执行一个查询的listArichiesteAjax操作)。我想移植并使用jQuery。我是否需要更改动作结构?还是我只需要编辑此jsp?
我将如何修改代码?(我在这里读到,最好使用jQuery而不是Struts2-jQuery插件)
从DivTag文档中:
updateFreq false false Number How often to reload the content (in milliseconds). e.g. 5000
因此它在那里并且也具有相同的名称。
您只需要更改<sx:为<sj:,导入jquery标签:
<sx:
<sj:
<%@ taglib prefix="sj" uri="/struts-jquery-tags" %>
并把<sj:head/>你的<head>部分,在这里你应该已经有<sx:head/>
<sj:head/>
<head>
<sx:head/>