2

我的页面设计是这样的,我必须使用两个单击提交然后保存到数据库的表单,反之亦然。

我在带有 Struts 2 框架的 JSP 页面上使用它。我已经尝试过 Ajax 解决方案,但它们对我不起作用。

这是我的脚本(更新):

$("#visitType").buttonset();
$("#patientCondition").buttonset();
$("input[type=submit], a, button").button().click(function(event) {
  event.preventDefault();
  var inputs=$('#visitType,#patientCondition ').find(':input').not(this);
  var form_data={};
  inputs.each(function(){
    form_data[this.name]=$(this).val();
  });
  $.post('patientSoapAll',  form_data, function(response){  
  });
});

我的表格1:

<s:form action="PatientSoapAll" method="post">

        <div id="visitType">
            <input type="radio" id="I" value="I" <s:if test='pSB.rOS == "I"'>checked</s:if> name="pSB.rOS" /><label for="I">I V</label> 
            <input type="radio" id="R" value="R"<s:if test='pSB.rOS == "R"'>checked</s:if>name="pSB.rOS" /><label for="R">Regular   Visit</label> 
            <input type="radio" id="P/N" <s:if test='pSB.rOS == "P/N"'>checked</s:if>name="pSB.rOS" /><label for="D/N">Re- Evaluation</label> 
            <input type="radio" id="D/N"<s:if test='pSB.rOS == "D/N"'>checked</s:if> name="pSB.rOS" /><label for="
    
    P/N">Discharge</label>
    </div>
</s:form>

我的表格2:

<s:form action="PatientSoapAll" method="post">

    <div id="patientCondition">
        <input type="radio" id="new" value="n"<s:if test='pSB.r2 == "n"'>checked</s:if> name="pSB.r2" /> <label for="new">New</label>
        <input type="radio" id="noChange" value="nC" <s:if test='pSB.r2 == "nC"'>checked</s:if> name="pSB.r2" /><label for="noChange">No Change</label> 
        <input type="radio" id="progressing" value="p"<s:if test='pSB.r2 == "p"'>checked</s:if> name="pSB.r2" /><label for="progressing">Progressing</label> 
        <input type="radio" id="notProgressing" value="nP" <s:if test='pSB.r2 == "nP"'>checked</s:if>   name="pSB.r2" /><label for="notProgressing">Not Progressing</label>
    </div>
</s:form>

这是我的更新提交按钮。从桌子上取下<div>并放置在桌子内。

<tr>
  <td></td>
  <td><input type="submit" value="Save Note" /></td>
</tr>

我正在使用 Struts 2,我想将此提交按钮重定向到一个操作PatientSoapAll。我正在使用自定义扩展.do而不是.action(默认情况下)。请告诉我如何将此提交按钮重定向到 Struts 2 中的相应操作类。

4

3 回答 3

1

你可以使用 jQuery.serialize来做你想做的事。为您的表单提供一些类,然后使用它来选择您的表单并调用 serialize 以获取标准 URL 编码表示法的字符串。之后,您可以使用一些 AJAX 方法将其发布到您的操作中。

$(function() {
  $("#saveNoteButton").click(function() {
    alert($(".forms").serialize());
  });
});
于 2013-03-30T13:41:04.630 回答
1

您可以使用 Struts2 jQuery 提交多个表单

<sj:submit formIds="visitType,patientCondition" targets="result" value="Submit" />  

表单ID:

单击此元素时在提交期间序列化所有字段的表单 ID 的逗号分隔列表(如果多个表单具有重叠的元素名称,则不确定将使用哪个)

于 2013-04-01T20:56:48.743 回答
1

找到了一个简单的解决方案。

javascript:

submitForms = function() {
  $('#form2 :input').not(':submit').clone().hide().appendTo('#form1');
    document.getElementById("form1").submit();
};

提交按钮:

<input type="button" value="Save Note" onclick="submitForms()" />
于 2013-04-01T23:40:42.647 回答