我正在使用 struts2-jquery 插件和使用对话框(远程),所以我在对话框代码之前指定了 remoteurl,如下所示:
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
<html>
<head>
<sj:head jqueryui="true"/>
</head>
<body>
<s:url var="remoteurl" action="myremoteaction"/>
<sj:dialog id="mydialog3" href="%{remoteurl}" title="Remote Dialog open on Click" autoOpen="false"/>
<sj:a openDialog="mydialog3">Open Dialog</sj:a>
</body>
</html>
当我首先单击超链接而不是直接打开对话框时,我想更改其 remoteurl 然后想打开它有人能告诉我我该怎么做吗?
提前致谢。