在我的 jsp 文件中,我像这样显示项目名称。
<label for="email">Project Name</label>
<select name='project_name' class='required input_field' id='project_name'>
<option value=''>-- Select --</option>
<c:forEach var="row" items="${result.rows}">
<option value="${row.ProjectId}">${row.ProjectName}</option>
</c:forEach>
</select>
我的问题是,我想在选择选项下方的文本框中显示相应项目的客户端名称。
<label for="author">Client Name</label>
<input type='text' name='client_name' id='client_name' class='required input_field' style='width:260px;'>
我希望它显示选择选项的 onchange。为此,我必须查询数据库。我怎样才能做到这一点..