Giter VIP home page Giter VIP logo

Comments (2)

Westsyan avatar Westsyan commented on July 21, 2024
            /**
             * @@type {({field: string, data: string(搜索内容), searchType: string(搜索类型)})}
             * 你要传入的筛选条件
             */
            let data = [
                {"field":"thA","searchType":"text","data":"searchDataA"},
                {"field":"thB","searchType":"text","data":"searchDataB"},
            ]
           //必须在表格初始化完成后调用这个方法
            initSearch(data)

        function initSearch(data) {
            data.forEach(json=>{
                //找到对应的列
                let searchBox= $("#table").find(`th[data-field="${json.field}"]`)
                //点击按钮展开搜索框,JS点击后生成搜索框,这一步是必须的
                searchBox.find(".my-table-sort-icon").click()
                //根据搜索类型填入搜索值
                //else if(...){...}其他类型,类似写法
                if(json.searchType === "text"){
                    searchBox.find(`#${json.field}-search`).val(json.data)
                }
                //点击搜索按钮
                searchBox.find(".btn-sort-primary").click()
            })
        }

from bootstrap-advanced-sortable.

LvPeng990324 avatar LvPeng990324 commented on July 21, 2024

感谢大佬,解决了

from bootstrap-advanced-sortable.

Related Issues (9)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.