gpt4 book ai didi

javascript - Yii2 ActiveForm 文本输入 onChange

转载 作者:可可西里 更新时间:2023-10-31 23:46:39 29 4
gpt4 key购买 nike

我经历过以下的人 http://www.yiiframework.com/wiki/772/pjax-on-activeform-and-gridview-yii2/一切都很好。但是我想在不单击提交按钮的情况下通过我的表单数据执行 Pjax 搜索。因此,我正在尝试使用 onChange 事件,但是我找不到执行此操作的方法。我找到了很多关于 dropDownList 的解释,但是没有关于 textInput onChange 事件的任何信息。

最佳答案

这是一个创建延迟即时搜索输入的解决方案:

Instant search function in Javascript

只需像这样修改您的 JavaScript-Search-Snippet:

$this->registerJs(
'function instantSearch() {
$.pjax.reload({container:"#countries"}); //Reload GridView
}

var timer;
$("document").ready(function(){
//$("#new_country").on("pjax:end", function() {
$("input").keyUp(function(){
timer && clearTimeout(timer);
timer = setTimeout(instantSearch, 200);
});
});'
);

关于javascript - Yii2 ActiveForm 文本输入 onChange,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33493838/

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