Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以根据操作输出的结果有条件地设置表单提交的“目标”属性?
编辑:我想我被误解了。如果我有一个表格:
<s:form action= "someFixedStruts2Action" > <!-- form fields --> <sj:submit targets="ConditionalTarget">
如何根据 someFixedAction 输出来更改 ConditionalTarget?
撞!
jQuery 不是必需的,你可以这样做:
<s:form action="%{#myAction}"> ... </s:form>
并在呈现表单时设置操作。
使用 jquery,您可以随时进行如下操作:jQuery('form').attr('action','you_coice.html');
jQuery('form').attr('action','you_coice.html');
希望对你有帮助