扩展 jQuery UI 方法
我想看看是否可以在不编辑代码本身的情况下向 jQuery UI 库添加方法或交互?我希望能够随着新版本的出现而快速升级,但仍然能够添加我自己的功能来扩展基本 UI 脚本。
示例:
我想使用 .dialog() 方法获得指针提示,以向特定区域提供消息传递。
有没有一种简单的方法来添加它,或者我最终必须下载源代码并在每次发布时自己完成?
I'm looking to see if it's possible to add methods or interactions to the jQuery UI library without editing the code itself? I want to be able to quickly upgrade as new versions come out, but still be able to add my own features that extend the base UI script.
Example:
I want to use the .dialog() method to have pointer tips to provide messaging to specific areas.
Is there an easy way to add this, or will I end up having to download the source and do it myself each time a release comes out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
访问 UI 小部件的原型:
您还可以像这样直接扩展原型: 如何扩展 jquery ui 小部件? (1.7)
Access the UI widget's prototype:
You can also directy extend the prototype like this: How to extend a jquery ui widget ? (1.7)