如何在 jQuery 中声明这个函数? $(document).ready 不起作用

发布于 2024-12-23 16:12:11 字数 665 浏览 1 评论 0原文

我正在使用 FCBKcomplete。我不知道为什么我的 UI 不接受 $(document).ready 下触发的任何函数。

我必须为 Facebook 触发以下功能,例如自动完成,就像 http://www.emposha 一样。 com/demo/fcbkcomplete_2/

$(document).ready(function() {
    $("#select3").fcbkcomplete({
        json_url: "data.txt",
        addontab: true,
        maxitems: 10,
        input_min_size: 0,
        height: 10,
        cache: true,
        newel: true,
        select_all_text: "select"
    });
});

但它不起作用。其他事件,例如 clickblur 等都在我的 UI 中正常工作。我可以使用任何替代函数来代替 document.ready 吗?

I am using FCBKcomplete. I don't know the reason why my UI is not accepting any function triggered under $(document).ready.

I have to trigger the function below for Facebook like auto-complete, just like http://www.emposha.com/demo/fcbkcomplete_2/

$(document).ready(function() {
    $("#select3").fcbkcomplete({
        json_url: "data.txt",
        addontab: true,
        maxitems: 10,
        input_min_size: 0,
        height: 10,
        cache: true,
        newel: true,
        select_all_text: "select"
    });
});

But it's not working. Other events, such as click, blur and all are working fine in my UI. Is there any alternative function which I can use instead of document.ready?

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

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

发布评论

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

评论(2

酷遇一生 2024-12-30 16:12:11

也许 javascript 库的其他一些包含已经使用 $(美元符号)作为选择器。因此,如果您收到 $(document).ready is not a function 错误或类似错误(例如您的 $("#select3").fcbkcomplete is not a function) ,您必须构建“bodyguard”功能,例如:

( function($) {
    // we can now rely on $ within the safety of our “bodyguard” function
    $(document).ready( function() { 
        alert("Yay I can use '
!!");  
    } );
} ) ( jQuery );

Maybe some other include of a javascript library is using the $ (dollar sign) already as a selector. So if you get the $(document).ready is not a function error or similar ones (like your $("#select3").fcbkcomplete is not a function), you'll have to build in a "body guard" functionality like:

( function($) {
    // we can now rely on $ within the safety of our “bodyguard” function
    $(document).ready( function() { 
        alert("Yay I can use '
!!");  
    } );
} ) ( jQuery );
三生一梦 2024-12-30 16:12:11
select_all_text: "select",

fcbkcomplete() 函数中最后一个选项 (select_all_text) 后面不应有逗号。

select_all_text: "select",

There shouldn't be a comma after the last option (select_all_text) in the fcbkcomplete() function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文