1. 程式人生 > >struts2的s:checkbox標籤如何獲得後臺傳來的值並選中

struts2的s:checkbox標籤如何獲得後臺傳來的值並選中

<s:iterator value="bookList" id="book">
    <s:property value="name"/> 
    <input type="checkbox" name="bookIds" value="${book.id}"
        <s:iterator value="bookIds" id="id">
            <s:if test="#book.id==id">
                checked="checked"
            </s:if>
        </s:iterator>
    /> <br/>       <%--checkbox的結尾--%>
</s:iterator>

bookList是action中的List<Book>屬性,查詢資料庫所有的book放值棧中
bookIds是action中的Integer[]屬性,某個人已經選的書