<html:select property="personnelId">
<html:option value="">請選擇</html:option>
<html:options collection="personList" property="personId" labelProperty="personName"/>
</html:select>
html:options自動幫你迭代personList中的內容,前提是personList是Collection類型的,而且封裝的是一個包含personId,personName屬性的對象
property顯示的是value,labelProperty顯示的是頁面看到的內容