1. 程式人生 > >將資料庫裡面的資料遍歷出來顯示在jsp頁面

將資料庫裡面的資料遍歷出來顯示在jsp頁面

jdp頁面的全選或者反選
    //全選、全反選
    function doSelectAll(){
        // jquery 1.6 前
        //$("input[name=selectedRow]").attr("checked", $("#selAll").is(":checked"));
        //prop jquery 1.6+建議使用
        $("input[name=selectedRow]").prop("checked", $("#selAll").is(":checked"));       
    }

還是利用struts標籤庫裡面的標籤進行顯示:

                        <s:iterator value="userList" status="st">
                            <tr <s:if test="#st.odd">bgcolor="f8f8f8"</s:if> >
                                <td align="center"><input type="checkbox" name="selectedRow" value="<s:property value='id'/>"
/>
</td> <td align="center"><s:property value="name"/></td> <td align="center"><s:property value="account"/></td> <td align="center"><s:property value="dept"
/>
</td> <td align="center"><s:property value="gender?'男':'女'"/></td> <td align="center"><s:property value="email"/></td> <td align="center"> <a href="javascript:doEdit('<s:property value='id'/>')">編輯</a> <a href="javascript:doDelete('<s:property value='id'/>')">刪除</a> </td> </tr> </s:iterator>

test=”#st.odd”>bgcolor=”f8f8f8”如果是奇數行就用這個顏色進行標記
顯示標籤: