0
我有下面的示例數據:輸入字段,如果選擇改變
books = [
{
id: 1,
name: Harry Potter,
description: test1
},
{
id: 2,
name: Forest Gump,
description: test2
}
]
JSP
<select onchange="bookLib.changeBook()">
<c:forEach var="book" items="${books }">
<option value="${book.id}">
<c:out value="${book.name}"/>
</option>
</c:forEach>
</select>
<input type="TEXT" id="descr" readonly/>
當 「選擇」 改變了,我需要在設置$ {} book.description文本輸入用ID「descr」標識。
我需要使用jQuery在函數bookLib.changeBook().js
中實現此功能。