【问题标题】:findIndex alternative for IE?IE 的 findIndex 替代品?
【发布时间】:2018-10-12 06:05:49
【问题描述】:

我有这个导航滚动到部分的代码。

var lastId;
    var topMenu = $(".community-nav");   
    var topMenuHeight = topMenu.outerHeight() - 19; 
    if(window.matchMedia("(max-width: 768px)").matches){
        var logoHeight = $(".community-logo").outerHeight();
        var topMenuHeight =  topMenu.outerHeight() - logoHeight;
    };
    menuItems = topMenu.find('.community-links li > div'),
    scrollItems = $('.nav-section')


      menuItems.click(function(e){
        var href = $(this).attr("data-target");
        var currentItem = $(this);
        var sectionClass = $("#community-intranav");
        scrollPartialMenuItem(currentItem, sectionClass);    
        var offsetTop = href === "#" ? 0 : $(href).offset().top-topMenuHeight + 20;
         if(window.matchMedia("(max-width: 768px)").matches){


          };
        $('html, body').stop().animate({ 
            scrollTop: offsetTop
        }, 850);
        e.preventDefault();
      });

      function getCurrentSection(scrollPosition) {
        return scrollItems.toArray().findIndex(function(item) {
          return item.offsetTop < scrollPosition && item.offsetTop+item.clientHeight > scrollPosition;
        });
      }

    // Bind to scroll
    $(window).on("load scroll",function(e){    
        var scrollPosition = $(this).scrollTop()+topMenuHeight;
        var currentSection = getCurrentSection(scrollPosition) ;
        var id = currentSection > -1 ? scrollItems[currentSection].id : "";

        if (id && lastId !== id) {
        lastId = id;
        menuItems.removeClass("active");
        menuItems.filter("[data-target='#"+id+"']").addClass('active');
        }                   
     });

在上面的代码中,IE 支持 findIndex 方法。我想要一个替代方法,以便我可以使用 findIndex 方法以外的方法重写我的函数 getCurrentSection。请帮助。

【问题讨论】:

  • 你知道 findIndex 是做什么的吗?它是如何工作的?
  • 你的代码不是已经在使用findIndex了吗?你可以详细说明这个问题。标题说你想为 IE 找一个 findIndex 替代品,然后文字说 IE 支持 findIndex,你想要别的东西。然后在评论中你说你想要findIndex。请清理这个烂摊子。
  • 是的。但是它不支持IE,这就是为什么我想重写它以支持IE。
  • 链接的 MDN 页面显示了如何让 IE 支持 findIndex ...

标签: javascript jquery navigation sticky


【解决方案1】:

您可以使用 polly 填充来添加诸如此类的缺失功能。

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex#Polyfill

将此添加到您的代码中

// https://tc39.github.io/ecma262/#sec-array.prototype.findindex
if (!Array.prototype.findIndex) {
  Object.defineProperty(Array.prototype, 'findIndex', {
    value: function(predicate) {
     // 1. Let O be ? ToObject(this value).
      if (this == null) {
        throw new TypeError('"this" is null or not defined');
      }

      var o = Object(this);

      // 2. Let len be ? ToLength(? Get(O, "length")).
      var len = o.length >>> 0;

      // 3. If IsCallable(predicate) is false, throw a TypeError exception.
      if (typeof predicate !== 'function') {
        throw new TypeError('predicate must be a function');
      }

      // 4. If thisArg was supplied, let T be thisArg; else let T be undefined.
      var thisArg = arguments[1];

      // 5. Let k be 0.
      var k = 0;

      // 6. Repeat, while k < len
      while (k < len) {
        // a. Let Pk be ! ToString(k).
        // b. Let kValue be ? Get(O, Pk).
        // c. Let testResult be ToBoolean(? Call(predicate, T, « kValue, k, O »)).
        // d. If testResult is true, return k.
        var kValue = o[k];
        if (predicate.call(thisArg, kValue, k, o)) {
          return k;
        }
        // e. Increase k by 1.
        k++;
      }

      // 7. Return -1.
      return -1;
    },
    configurable: true,
    writable: true
  });
}

或者您可以使用 pollyfill 服务 CDN,例如 pollyfill.io

 <script src='https://cdn.polyfill.io/v2/polyfill.js?features?feature=Array.prototype.findIndex'>
    </script>

【讨论】:

  • Polyfills 要直接添加到脚本文件中?从来没有使用过polyfills。
  • 是的,您可以直接使用 Polly 填写您的脚本标签。或者 ypu 可以使用一些 pollyfill cdn 服务,例如 polyfill.io 最棒的是这会根据您使用的浏览器动态更改 pollyfill 将其添加到您的正文中,其余部分将由 pollyfill.io &lt;script src='https://cdn.polyfill.io/v2/polyfill.js?features?feature=Array.prototype.findIndex'&gt;&lt;/script&gt; 处理跨度>
猜你喜欢
  • 2011-03-16
  • 2017-07-02
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2016-08-17
  • 2012-04-16
  • 1970-01-01
  • 2010-11-08
相关资源
最近更新 更多