gpt4 book ai didi

javascript - Bootstrap-Table 插件,按初始搜索值过滤

转载 作者:行者123 更新时间:2023-12-03 10:14:29 25 4
gpt4 key购买 nike

使用 bootstrap-table 插件 ( http://bootstrap-table.wenzhixin.net.cn/documentation/ ),我尝试设置一个表,该表在加载表时自动搜索默认搜索值。我在 javascript 文件中设置了默认值,但除非您单击搜索框并按任意键,否则它不会启动搜索。

我还尝试创建一个新的 javascript 文件以在执行其他操作之后加载,使用此页面上推荐的一些代码( with the Bootstrap Table plugin, how to set a search string on first load? )并设置初始值,但存在相同的问题。我正在尝试弄清楚如何在不按键的情况下初始化搜索。

var srch_str = 'v1.00';
var bstable_first_load = true;

$(document.getElementById('server_table')).on('load-success.bs.table',function () {//when the table is loaded the first time and visible, set the search string...
if(srch_str.length > 0 && bstable_first_load){$('.fixed-table-toolbar').find('.search > :input').val(srch_str);
bstable_first_load = false};
})

最佳答案

看来他们最近在最新版本中添加了此功能:

data-search-text="Your Search Query"

关于javascript - Bootstrap-Table 插件,按初始搜索值过滤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29950697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com