jqueryUI 自动完成示例如何摆脱不使用 $(document).ready 的情况

发布于 2024-12-06 10:27:06 字数 432 浏览 0 评论 0原文

我决心弄清楚 http://jqueryui.com/demos/autocomplete/#default 中的示例如何 无需包装在 $(document).ready 中即可工作,因为我只花了一个半小时多的时间尝试重现此内容,但没有成功,而我所需要做的就是将其包装在 $(document).ready

中我看到的源代码的最底部这个,但与自动完成无关。

<script type="text/javascript">
$(document).ready(function() {
$('a').click(function(){
    this.blur();
});
});
</script> 

I am determined to figure out how the example at http://jqueryui.com/demos/autocomplete/#default works without being wrapped in a $(document).ready because I just spend over an hour and a half trying unsuccessfully to reproduce this when all I needed to do was wrap it in the $(document).ready

At the very bottom of the source I see this one, but nothing to do with the autocomplete.

<script type="text/javascript">
$(document).ready(function() {
$('a').click(function(){
    this.blur();
});
});
</script> 

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

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

发布评论

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

评论(1

如何视而不见 2024-12-13 10:27:06

$(function () {blah}) 与使用 $(document).ready 相同。这是文档中的第三个语法。

the $(function () {blah}) is the same as using $(document).ready. It's the third syntax in the docs.

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