1. 程式人生 > >SSM:前端問題處理- jQuery

SSM:前端問題處理- jQuery

 多選框選中

        $("input:checkbox:checked").each(function () {
                alert($(this).val());
                $(this).parents("tr").remove();
            })

 增強版:

function deleteCheck() {
    if (confirm("是否刪除?")) {
        $(function () {
            $("input:checkbox:checked").each(function () {
                if ($(this).val() != "all") {
                    $(this).parents("tr").remove();
                }
            })
        })
    }
}

 

進入載入 

<c:if test="${empty stores}">
    <script type="text/javascript">
        $(function () {
            submitForm();
        })
    </script>
</c:if>


        <button type="submit">儲存並提交</button>

提交表單

function submitForm() {
    $(function () {
        $("form").submit();// 提交from
    })
}