0

我在 Java Web 应用程序中使用 Ajax,我想将 textfield 的值与指向下一页的 href 链接一起获取。

<%@page contentType="text/html" pageEncoding="UTF-8"%>
           <% String root = getServletContext().getContextPath();
           %>
              <table  border="0" id="box-table-b">
                  <thead><tr>
                  <th height="31" colspan="2" nowrap>Enter User Id of Patient </th>
                      </tr></thead>
                <tr>`enter code here`
                  <td width="76" nowrap>UserId</td>
                  <td width="85"  nowrap>
                      <input type="text" name="confuserid" id="confuserid"/>
                 </td>
                </tr>
                <tr>
                <td height="66" colspan="2" align="center" valign="middle" nowrap>            
                <a href="#" onclick="returndisplayData('<%=root%>/confapp.do?method=confapp','entry');"><input type="button" value="Submit"></a>
                  </td>
                </tr>
              </table>
4

1 回答 1

0

您可以将控件和链接放在表单中并通过 GET 提交表单,但这会使您远离 ajax。

另一种选择是使用 jQuery 简单地获取 confuserid 的值并将其附加到您传递给 returndisplayData 函数的 URL。

就像是

function getMyURL() {
    return '<%=root%>/confapp.do?method=confapp&confuserid='+$("#confuserid").val();
}

那么你的链接看起来像

<a href="#" onclick="returndisplayData(getMyURL(),'entry');"><input type="button" value="Submit"></a>

显然,您需要在页面中包含 jQuery。

于 2012-04-24T18:04:29.137 回答