<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>"/> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>">
search
HomeWeb Front-endJS TutorialExample code for bootstrap to obtain data
Example code for bootstrap to obtain dataJul 02, 2017 am 09:27 AM
bootstrapdataObtain


nbsp;HTML>


    <meta>
    <meta>
    <meta>
    <title>通用增删改查</title>
    <link>
    <link>
    <link>
    <link>
    <link>
    <link>

    <link>


<div>
    <div>
        <a><i></i> 新增类型</a>
        <i></i> 编辑类型--%>
        <a><i></i> 删除类型</a>
    </div>
    <table></table>
</div>
<!-- 新增 -->
<div>
    <form>
        <div>
            <select>
                <option>请选择父级</option>
                <foreach>
                    <option>${type.title}</option>
                </foreach>
            </select>
        </div>
        <div>
            <label>标题</label>
            <input>
        </div>
        <div>
            <label>描述</label>
            <input>
        </div>

    </form>
</div>
<script></script>
<script></script>
<script></script>
<script></script>
<script></script>
<script></script>
<script></script>

<script></script>
<script>
    var $table = $(&#39;#table&#39;);
    var servlet_url = "/manage/type/index";
    $("#input1").val("ssss");
    $(function() {
        $(document).on(&#39;focus&#39;, &#39;input[type="text"]&#39;, function() {
            $(this).parent().find(&#39;label&#39;).addClass(&#39;active&#39;);
        }).on(&#39;blur&#39;, &#39;input[type="text"]&#39;, function() {
            if ($(this).val() == &#39;&#39;) {
                $(this).parent().find(&#39;label&#39;).removeClass(&#39;active&#39;);
            }
        });
        // bootstrap table初始化
        // 
        $table.bootstrapTable({
            url: servlet_url+&#39;?m=ajax_all&#39;,
            height: getHeight(),
            striped: true,
            search: true,
            searchOnEnterKey: true,
            showRefresh: true,
            showToggle: true,
            showColumns: true,
            minimumCountColumns: 2,
            showPaginationSwitch: true,
            clickToSelect: true,
            detailView: true,
            detailFormatter: &#39;detailFormatter&#39;,
            pagination: true,
            paginationLoop: false,
            classes: &#39;table table-hover table-no-bordered&#39;,
            //sidePagination: &#39;server&#39;,
            //silentSort: false,
            smartDisplay: false,
            idField: &#39;id&#39;,
            sortName: &#39;id&#39;,
            sortOrder: &#39;desc&#39;,
            escape: true,
            searchOnEnterKey: true,
            maintainSelected: true,
            toolbar: &#39;#toolbar&#39;,
            columns: [
                {field: &#39;state&#39;, checkbox: true},
                {field: &#39;id&#39;, title: &#39;编号&#39;,  halign: &#39;center&#39;,align:"center"},
                {field: &#39;title&#39;, title: &#39;标题&#39;,  halign: &#39;center&#39;,align:"center"},
                {field: &#39;pid&#39;, title: &#39;父级ID&#39;,  halign: &#39;center&#39;,align:"center"},
                {field: &#39;description&#39;, title: &#39;描述&#39;,  halign: &#39;center&#39;,align:"center"},
                {field: &#39;createTime&#39;, title: &#39;创建时间&#39;,  halign: &#39;center&#39;,align:"center",formatter: &#39;timeFormatter&#39;},

                {field: &#39;action&#39;, title: &#39;操作&#39;, halign: &#39;center&#39;, align: &#39;center&#39;, formatter: &#39;actionFormatter&#39;, events: &#39;actionEvents&#39;, clickToSelect: false}
            ]
        }).on(&#39;all.bs.table&#39;, function (e, name, args) {
            $(&#39;[data-toggle="tooltip"]&#39;).tooltip();
            $(&#39;[data-toggle="popover"]&#39;).popover();
        });
    });
    function timeFormatter(value,row,index){
        return new Date(row.createTime).format("yyyy-MM-dd hh:mm:ss");
    }
    function actionFormatter(value, row, index) {
        return [
            &#39;<a class="like" href="javascript:void(0)" data-toggle="tooltip" title="Like"><i class="glyphicon glyphicon-heart"> &#39;,
            &#39;<a class="edit ml10" href="javascript:void(0)" data-toggle="tooltip" title="Edit"><i class="glyphicon glyphicon-edit"> &#39;,
            &#39;<a class="remove ml10" href="javascript:void(0)" data-toggle="tooltip" title="Remove"><i class="glyphicon glyphicon-remove">&#39;
        ].join(&#39;&#39;);
    }
    window.actionEvents = {
        &#39;click .like&#39;: function (e, value, row, index) {
            alert(&#39;You click like icon, row: &#39; + JSON.stringify(row));
            console.log(value, row, index);
        },
        &#39;click .edit&#39;: function (e, value, row, index) {
            alert(&#39;You click edit icon, row: &#39; + JSON.stringify(row));
            //搞修改数据
            $("#input1").val(row.title);
            $("#input3").val(row.description);
            $("#selectpid").val(row.pid);
            alert($("#input1").val());
            $.confirm({
                title:"修改数据",
                content:function(){
                    var self = this;
                    var h = $("#createDialog").html();
                    self.setContent($("#createDialog").html());
                },
                buttons:{
                    confirm:{
                        text:"确定",
                        action:function(){
                            alert($(".jconfirm-content form input")[0].value)
                            //发送修改后的数据到服务器端,更新数据库
//                            $.post(servlet_url+"?m=update",{
//                                id:row.id,
//                                title:$(".jconfirm-content form input")[0].value,
//                                pid:$(".jconfirm-content form select")[0].value,
//                                description:$(".jconfirm-content form input")[1].value
//                            },function(txt){
//                                //服务器端响应内容回调函数
//                                $.alert(txt.message);
//                                $("#createDialog").html(ht);
//                                $table.bootstrapTable(&#39;refresh&#39;);
//                            },"json")
                        }
                    },
                    cancle:{
                        text:"取消",
                        action:function(){
                            $("#createDialog").html(ht);
                        }
                    }
                }
            })


            console.log(value, row, index);
        },
        &#39;click .remove&#39;: function (e, value, row, index) {
            removeByUniqueId = row.id;
            alert(&#39;You click remove icon, row: &#39; + JSON.stringify(row));
            $.confirm({
                title:"提示",
                content:"是否永久删除数据?",
                buttons:{
                    confirm:{
                        text:"确定",
                        action:function(){
                            //执行删除操作
                            $.get(servlet_url+"?m=delete",{&#39;id&#39;:row.id},function(txt){
                                $.alert(txt.message);

                                $table.bootstrapTable(&#39;refresh&#39;);
                            },"json");
                        }
                    },
                    cancle:{
                        text:"取消"
                    }
                }
            })
            console.log(value, row, index);
        }
    };
    function detailFormatter(index, row) {
        var html = [];
        $.each(row, function (key, value) {
            html.push(&#39;<p><b>&#39; + key + &#39;: &#39; + value + &#39;&#39;);
        });
        return html.join(&#39;&#39;);
    }
    // 新增
    var ht = $("#createDialog").html();
    function createAction() {

        $("#createDialog").html("");
        $.confirm({
            type: &#39;dark&#39;,
            animationSpeed: 300,
            title: &#39;新增系统&#39;,
            content: ht,
            buttons: {
                confirm: {
                    text: &#39;确认&#39;,
                    btnClass: &#39;waves-effect waves-button&#39;,
                    action: function () {

                        var t =$("#input1").val();
                        var desc = $("#input3").val();
                        var pid = $("#selectpid").val();
                        alert(t+"  "+desc);
                        if(t==""){
                            $.alert(&#39;标题不能为空&#39;);
                        }else{
                            $.get("/manage/type/index?m=add",{"title":t,"description":desc,"pid":pid},function(txt) {

                                $("#createDialog").html(ht);
                                $.confirm({
                                    title:"提示",
                                    content:txt.message,
                                    buttons: {
                                        confirm: {
                                            text: &#39;确认&#39;,
                                                    btnClass: &#39;waves-effect waves-button&#39;,
                                                    action: function () {
                                                            $table.bootstrapTable(&#39;refresh&#39;);
                                                        }
                                                }
                                        }
                                    });
                            },"json");
                        }

                    }
                },
                cancel: {
                    text: &#39;取消&#39;,
                    btnClass: &#39;waves-effect waves-button&#39;
                }
            }
        });
    }
    // 编辑
    function updateAction() {
        var rows = $table.bootstrapTable(&#39;getSelections&#39;);
        if (rows.length == 0) {
            $.confirm({
                title: false,
                content: &#39;请至少选择一条记录!&#39;,
                autoClose: &#39;cancel|3000&#39;,
                backgroundDismiss: true,
                buttons: {
                    cancel: {
                        text: &#39;取消&#39;,
                        btnClass: &#39;waves-effect waves-button&#39;
                    }
                }
            });
        } else {
            $.confirm({
                type: &#39;blue&#39;,
                animationSpeed: 300,
                title: &#39;编辑系统&#39;,
                content: $(&#39;#createDialog&#39;).html(),
                buttons: {
                    confirm: {
                        text: &#39;确认&#39;,
                        btnClass: &#39;waves-effect waves-button&#39;,
                        action: function () {
                            $.alert(&#39;确认&#39;);
                        }
                    },
                    cancel: {
                        text: &#39;取消&#39;,
                        btnClass: &#39;waves-effect waves-button&#39;
                    }
                }
            });
        }
    }
    // 删除
    function deleteAction() {
        var rows = $table.bootstrapTable(&#39;getSelections&#39;);
        if (rows.length == 0) {
            $.confirm({
                title: false,
                content: &#39;请至少选择一条记录!&#39;,
                autoClose: &#39;cancel|3000&#39;,
                backgroundDismiss: true,
                buttons: {
                    cancel: {
                        text: &#39;取消&#39;,
                        btnClass: &#39;waves-effect waves-button&#39;
                    }
                }
            });
        } else {
            $.confirm({
                type: &#39;red&#39;,
                animationSpeed: 300,
                title: false,
                content: &#39;确认删除该系统吗?&#39;,
                buttons: {
                    confirm: {
                        text: &#39;确认&#39;,
                        btnClass: &#39;waves-effect waves-button&#39;,
                        action: function () {
                            var ids = new Array();
                            for (var i in rows) {
                                ids.push(rows[i].systemId);
                            }
                            $.alert(&#39;删除:id=&#39; + ids.join("-"));
                        }
                    },
                    cancel: {
                        text: &#39;取消&#39;,
                        btnClass: &#39;waves-effect waves-button&#39;
                    }
                }
            });
        }
    }
    //原型链
    Date.prototype.format = function(fmt) {
        var o = {
            "M+" : this.getMonth()+1,                 //月份
            "d+" : this.getDate(),                    //日
            "h+" : this.getHours(),                   //小时
            "m+" : this.getMinutes(),                 //分
            "s+" : this.getSeconds(),                 //秒
            "q+" : Math.floor((this.getMonth()+3)/3), //季度
            "S"  : this.getMilliseconds()             //毫秒
        };
        if(/(y+)/.test(fmt)){
            fmt=fmt.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length));
        }
        for(var k in o) {
            if(new RegExp("("+ k +")").test(fmt)){
              fmt = fmt.replace(RegExp.$1, (RegExp.$1.length==1) ? (o[k]) : (("00"+ o[k]).substr((""+ o[k]).length)));
            }
        }
        return fmt;
    }
</script>

【相关视频推荐:Bootstrap教程

The above is the detailed content of Example code for bootstrap to obtain data. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
10款好看又实用的Bootstrap后台管理系统模板(快来下载)10款好看又实用的Bootstrap后台管理系统模板(快来下载)Aug 06, 2021 pm 01:55 PM

一个好的网站,不能只看外表,网站后台同样很重要。本篇文章给大家分享10款好看又实用的Bootstrap后台管理系统模板,可以帮助大家快速建立强大有美观的网站后台,欢迎下载使用!如果想要获取更多后端模板,请关注php中文网后端模板栏目!

bootstrap与jquery是什么关系bootstrap与jquery是什么关系Aug 01, 2022 pm 06:02 PM

bootstrap与jquery的关系是:bootstrap是基于jquery结合了其他技术的前端框架。bootstrap用于快速开发Web应用程序和网站,jquery是一个兼容多浏览器的javascript库,bootstrap是基于HTML、CSS、JAVASCRIPT的。

7款实用响应式Bootstrap电商源码模板(快来下载)7款实用响应式Bootstrap电商源码模板(快来下载)Aug 31, 2021 pm 02:13 PM

好看又实用的Bootstrap电商源码模板可以提高建站效率,下面本文给大家分享7款实用响应式Bootstrap电商源码,均可免费下载,欢迎大家使用!更多电商源码模板,请关注php中文网电商源码​栏目!

8款Bootstrap企业公司网站模板(源码免费下载)8款Bootstrap企业公司网站模板(源码免费下载)Aug 24, 2021 pm 04:35 PM

好看又实用的企业公司网站模板可以提高您的建站效率,下面PHP中文网为大家分享8款Bootstrap企业公司网站模板,均可免费下载,欢迎大家使用!更多企业站源码模板,请关注php中文网企业站源码栏目!

bootstrap中sm是什么意思bootstrap中sm是什么意思May 06, 2022 pm 06:35 PM

在bootstrap中,sm是“小”的意思,是small的缩写;sm常用于表示栅格类“.col-sm-*”,是小屏幕设备类的意思,表示显示大小大于等于768px并且小于992px的屏幕设备,类似平板设备。

bootstrap默认字体大小是多少bootstrap默认字体大小是多少Aug 22, 2022 pm 04:34 PM

bootstrap默认字体大小是“14px”;Bootstrap是一个基于HTML、CSS、JavaScript的开源框架,用于快速构建基于PC端和移动端设备的响应式web页面,并且默认的行高为“20px”,p元素行高为“10px”。

bootstrap modal 如何关闭bootstrap modal 如何关闭Dec 07, 2020 am 09:41 AM

bootstrap modal关闭的方法:1、连接好bootstrap的插件;2、给按钮绑定模态框事件;3、通过“ $('#myModal').modal('hide');”方法手动关闭模态框即可。

bootstrap是免费的吗bootstrap是免费的吗Jun 21, 2022 pm 05:31 PM

bootstrap是免费的;bootstrap是美国Twitter公司的设计师“Mark Otto”和“Jacob Thornton”合作基于HTML、CSS、JavaScript 开发的简洁、直观、强悍的前端开发框架,开发完成后在2011年8月就在GitHub上发布了,并且开源免费。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!