单击输入字段时显示 qTip,直到输入的字符少于 3 个

发布于 2024-12-14 14:30:26 字数 60 浏览 1 评论 0原文

如标题中所述,我需要在单击输入字段时显示 qtip 工具提示,如果输入的字符超过 2 个,则隐藏 qtip

As described in title I need to display qtip tooltip when click on input field and if there is more than 2 chars typed then hide qtip

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

在风中等你 2024-12-21 14:30:26

为了根据输入的长度显示/隐藏 qTip,请使用以下命令:

$('#textbox').qtip();

$("#textbox")
    .bind("focus keyup change", function () {
        $(this).qtip('toggle', ($(this).val().length <= 2));
});

In order to show/hide the qTip based on the length of the input, use this:

$('#textbox').qtip();

$("#textbox")
    .bind("focus keyup change", function () {
        $(this).qtip('toggle', ($(this).val().length <= 2));
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文