覆盖 jQuery 插件方法,默认情况下和单个实例
基本问题是:如何在不编辑原始插件文件的情况下执行插件方法的基本覆盖?
是否可以为特定实例创建覆盖:
示例: rtf 插件使用:
$('selector').wysiwyg('setContent',newContent);
为了将 rtf 文本显示为只读,我希望将相同的方法应用于 div 而不是 IFRAME 的主体,
我想用我自己的代码覆盖原始的“setContent”,只需对于这一元素。
谢谢
The basic question is: How do I perform a basic override of a plugin method without editing the original plugin file?
Is it possible to create an override for a specific instance:
Example:
An rtf plugin uses:
$('selector').wysiwyg('setContent',newContent);
In order to display the rtf text as readonly I would like for the same method to be applied to a div instead of the body of the IFRAME
I would like to overwrite the original 'setContent' with my own code, just for this one element.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以轻松地以这种方式覆盖(我喜欢称之为半挂钩)函数。
在此示例中,您覆盖
.css()
jQuery 函数并返回自定义值您的值等于“somecolor”,否则,将调用原始函数
通过了论点。
You can easily overwrite (I like to call it semi-hooking) functions in that manner.
In this example, you overwrite the
.css()
jQuery function and return a custom valueof your value equals 'somecolor', otherwise, the original function is called with
passed arguments.