Web 自定义控件并检查现有的 javascript 引用?
我正在创建一个自定义控件,并且在开始之前有一个想法。我的控件依赖 jQuery 库来工作。如果用户的页面上已经有该库的版本怎么办?这会影响什么吗?如果我的版本较新/较旧,并且我的控件仅适用于该版本的 libaray,我该怎么办?谢谢
I am creating a custom control and had a thought before I began. My control relies on the jQuery library to work. What if the user already has a version of the library already on their page. Will this effect anything? If my version is newer / older and my control will only work with that version of the libaray, what should I do? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那么,如果定义了 jQuery 函数,您可以检查您的控件正在呈现的脚本。
如果没有,则未加载。你应该加载它。
如果已经加载了另一个版本
jQuery.fn.jquery;
将返回一个版本字符串,如“1.4.4”。因此,您可以显示一条错误消息,并告诉人们引用与您的控件兼容的另一个 jQuery 版本,或者只是让您的控件完成工作。Google 确实有jQuery 动态加载函数(以及许多其他框架)你可以使用。
希望有帮助。
Well, you could check in your scripts your control is rendering if the jQuery function is defined.
If not, it isn't loaded. And you should load it.
If there's already another version loaded
jQuery.fn.jquery;
will return you a version string like "1.4.4". So you could display an error message and tell the person to reference another jQuery version which is compatible with your control or just let your control do the work.Google does have a dynamic loading function for jQuery (and a lot of other frameworks) you could use.
Hope that helps.