如何将 jQuery 插件功能限制为仅某些元素?

发布于 2024-12-21 12:13:53 字数 458 浏览 0 评论 0原文

我检查了 jQuery 插件网站,它教我如何编写一个基本插件:

(function( $ ){
  $.fn.maxHeight = function() {
    var max = 0;
    this.each(function() {
      max = Math.max( max, $(this).height() );
    });
    return max;
  };
})( jQuery );

然后,d​​iv 可以有 maxHeight 方法,如下所示:

var tallest = $('div').maxHeight(); // Returns the height of the tallest div

但我想只有 textarea 有 maxHeight 函数,但不是该分区。我怎样才能这样做呢?

I check the jQuery plugin site, which teach me how to write a basic plugin:

(function( $ ){
  $.fn.maxHeight = function() {
    var max = 0;
    this.each(function() {
      max = Math.max( max, $(this).height() );
    });
    return max;
  };
})( jQuery );

Then, the div can have the maxHeight method, like this:

var tallest = $('div').maxHeight(); // Returns the height of the tallest div

But I would like to only textarea have maxHeight function, but not the div. How can I do so?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

围归者 2024-12-28 12:13:53

你可以做...

this.filter('textarea')

如果你对返回的集合执行each(),它只会迭代选定的textarea元素。

You could do...

this.filter('textarea')

If you do an each() on the returned set, it will only iterate over selected textarea elements.

随风而去 2024-12-28 12:13:53

在检查/保存高度之前检查并确保该元素是文本区域。

this.each(function() {
    if(this.tagName.toLowerCase() === "textarea") {
        max = Math.max( max, $(this).height() );
    }
});

jQuery 插件不会为某些元素提供函数,而是为 jQuery 对象提供函数来处理一组选定的元素。最好的解决方案是使它们尽可能通用,并且仅在需要时调用 $("textarea").maxHeight() 。您没有在插件中执行任何特定于 textarea 的操作,如果您保留现在的样子,则将来不需要对其进行更改,如果 $( 'div').maxHeight() 成为必需的用例。

Check to make sure the element is a textarea before checking/saving the height.

this.each(function() {
    if(this.tagName.toLowerCase() === "textarea") {
        max = Math.max( max, $(this).height() );
    }
});

jQuery plugins don't give functions to certain elements, they give functions to the jQuery object for working with a set of selected elements. The best solution would be to keep them as generic as possible and only call $("textarea").maxHeight() when you need it. You aren't doing anything specific to textareas in the plugin and if you leave it as it is now, you don't need to make a change to it in the future if $('div').maxHeight() becomes a required use-case.

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