gpt4 book ai didi

jquery - 如果 searchTerm 长度 ==0 想要添加警报

转载 作者:行者123 更新时间:2023-12-01 06:04:04 25 4
gpt4 key购买 nike

<script type="text/javascript">


$(function () {
$("#searchTerm").autocomplete({
//appendTo:"#abc",
// position: { my : "right top", at: "right bottom" },
source: "home/search",
minLength: 1,

autoFocus: true,
select: function (event, ui) {
if (ui.item) {
$("#searchTerm").val(ui.item.value);
$("form").submit();
}
else { alert("abc")}
}

});
});
</script>

我尝试了几件事,但不知何故我无法破解这个简单的事情。提前致谢

最佳答案

怎么样:

if($.trim($("#searchTerm").val()).length === 0) {
alert("empty");
}

关于jquery - 如果 searchTerm 长度 ==0 想要添加警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8341144/

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