扩展 jQuery UI 方法

发布于 2024-10-31 10:17:56 字数 198 浏览 5 评论 0原文

我想看看是否可以在不编辑代码本身的情况下向 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半世晨晓 2024-11-07 10:17:56

访问 UI 小部件的原型:

var proto = $.ui.autocomplete.prototype;

proto.myNewMethodForAutocomplete = function(){
    // ...
};

您还可以像这样直接扩展原型: 如何扩展 jquery ui 小部件? (1.7)

Access the UI widget's prototype:

var proto = $.ui.autocomplete.prototype;

proto.myNewMethodForAutocomplete = function(){
    // ...
};

You can also directy extend the prototype like this: How to extend a jquery ui widget ? (1.7)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文