jqueryUI 自动完成示例如何摆脱不使用 $(document).ready 的情况
我决心弄清楚 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$(function () {blah})
与使用 $(document).ready 相同。这是文档中的第三个语法。the
$(function () {blah})
is the same as using $(document).ready. It's the third syntax in the docs.