有没有办法编辑此脚本,使其仅适用于特定的选择类?

发布于 2024-10-31 12:15:57 字数 1274 浏览 0 评论 0原文

有没有办法编辑此脚本,使其仅适用于特定的选择类,而不适用于页面中的所有标签?

(此脚本用于扩展下拉列表选项,以便它们在 IE 中不会被截断。)我们想要的是将其仅应用于选择具有很长选项名称的标签。

<script>// Safely use $
    (function($) {

      $.fn._ie_select=function() { 

        return $(this).each(function() { 

          var a = $(this),
              p = a.parent();

          p.css('position','relative');

          var o = a.position(),
              h = a.outerHeight(),
              l = o.left,
              t = o.top;

          var c = a.clone(true);

          $.data(c,'element',a);

          c.css({
            zIndex   : 100,
            height   : h,
            top      : t,
            left     : l,
            position : 'absolute',
            width    : 'auto',
            opacity  : 0
          }).attr({
            id    : this.id + '-clone',
            name  : this.name + '-clone'
          }).change(function() {
            $.data(c,'element')
              .val($(this).val())
              .trigger('change')
          });

          a.before(c).click(function() { 
            c.trigger('click');
          });

        }); // END RETURN

      }; // END PLUGIN

      if ($.browser.msie) {
        $('select')._ie_select();
      }

    })(jQuery); // END SAFETY</script>

Is there a way to edit this script so that it only applies to a specific select class and not to all tags within a page?

(This script is for expanding the dropdown list options so that they're not cut-off in IE.) What we want to happen is to apply this only to select tags that have very long option names.

<script>// Safely use $
    (function($) {

      $.fn._ie_select=function() { 

        return $(this).each(function() { 

          var a = $(this),
              p = a.parent();

          p.css('position','relative');

          var o = a.position(),
              h = a.outerHeight(),
              l = o.left,
              t = o.top;

          var c = a.clone(true);

          $.data(c,'element',a);

          c.css({
            zIndex   : 100,
            height   : h,
            top      : t,
            left     : l,
            position : 'absolute',
            width    : 'auto',
            opacity  : 0
          }).attr({
            id    : this.id + '-clone',
            name  : this.name + '-clone'
          }).change(function() {
            $.data(c,'element')
              .val($(this).val())
              .trigger('change')
          });

          a.before(c).click(function() { 
            c.trigger('click');
          });

        }); // END RETURN

      }; // END PLUGIN

      if ($.browser.msie) {
        $('select')._ie_select();
      }

    })(jQuery); // END SAFETY</script>

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

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

发布评论

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

评论(1

沫离伤花 2024-11-07 12:15:57

底部的代码似乎是采用选择器的部分,因此更改

if ($.browser.msie) {
   $('select')._ie_select();
}

if ($.browser.msie) {
   $('select.classNameHere')._ie_select();
}

The code at the bottom appears to be the part taking the selector, so change

if ($.browser.msie) {
   $('select')._ie_select();
}

to

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