我需要将 jQuery 核心与 jQuery mobile 一起包含吗?
是否有必要包含 jQuery 的核心,或者移动框架本身就足够了? 根据我的尝试,我得出的结论是这两个文件都是必要的,但我想确定这个问题。
Is it necessary to include the core of jQuery, or is the mobile framework sufficient alone?
From what I`ve tried, I concluded that both files are necessary, but I would like to be sure on this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
文档为您提供了您需要了解的所有信息:
简而言之,是的,需要 jQuery 核心。
The docs give you all the information you need to know:
In short, yes, jQuery core is required.
http://code.jquery.com/mobile/1.0a1/ jquery.mobile-1.0a1.js
基于代码,它没有重新定义 jQuery,而是扩展了它,所以是的,您需要核心。
它在定义
jQuery.mobile
时传递 jQuery 对象。请参阅 演示,其中包括移动版之前的核心版。http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.js
Based on the code, it doesn't redefine jQuery but extends it so yes, you need the core.
It passes the jQuery object when defining
jQuery.mobile
. See the demo which includes core before mobile.