gpt4 book ai didi

javascript - 将变量发送到 jquery 函数

转载 作者:行者123 更新时间:2023-12-02 16:07:51 25 4
gpt4 key购买 nike

我一直在尝试将变量传递给 _F.search ,但没有成功,有人可以帮忙吗?

(function(window, $) {

// 'use strict';
//setInterval(function () {alert("Hello")}, 3000);
var StreamTable = function(container, opts, data) {
return new _StreamTable(container, opts, data);
};


_F.search = function(text){
alert("search " + text);
var q = $.trim(text), count = 0;
// alert(this.last_search_text);
if (q == this.last_search_text) return;

this.last_search_text = q;

if(q.length == 0 ){
this.render(0);
}else{
this.searchInData(q);
this.render(0);
}

this.current_page = 0;
this.renderPagination(this.pageCount(), this.current_page);
this.execCallbacks('pagination');
};
}

我试过了

onclick ="window.search(5)"

通过点击按钮但仍然不起作用。

最佳答案

搜索函数应该这样声明:

window.search = function(text){

这会将搜索功能附加到窗口对象。这将允许您将其附加到 onclick 事件,就像您在示例中一样:

onclick="window.search(5)"

关于javascript - 将变量发送到 jquery 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30549035/

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