私はJavaWebアプリケーションでAjaxを使用していますが、次のページへのhrefリンクとともにtextfieldの値を取得したいと思います。
<%@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>