可以在不改变布局或 DOM 的情况下使用 jQuery Mobile 吗?
我只想使用 jQuery mobile 的一些组件(特别是点击事件处理程序和日期选择器)。在不“接管”我的移动网络应用程序的布局和行为的情况下,使用该库的最佳方式是什么?
I'm interested in using only some of the components of jQuery mobile (specifically, the tap event handlers and datepicker). What's the best way to make use of the library without it "taking over" the layout and behavior my mobile web app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
修改DOM是JQM的主要功能。你必须狠狠地削弱它。
从 git 获取存储库,从清单中删除所有插件,找到代码并找到
.page
方法/小部件并删除所有代码(或者如果您需要让某些东西正常工作,则留下一些位 - 我没试过)。然后运行
make
,它将为您创建一个剥离的 jquery.mobile.min.jsmodifying DOM is JQM's main feature. You have to cripple it hard.
Get the repo from git, remove all plugins from manifest, get to the code and find the
.page
method/widget and remove all the code (or leave some bits if you need to get something working - I haven't tried that).Then run
make
and it will create a stripped jquery.mobile.min.js for you