0

在我的 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。为此,我必须查询数据库。我怎样才能做到这一点..

4

1 回答 1

0

您可以将onchange属性添加到您的select包含:

this.form['client_name'].value = this[this.selectedIndex].innerText
于 2012-09-24T14:16:21.407 回答