IE的findIndex替代品?

时间:2018-10-12 06:05:49

标签: javascript jquery navigation sticky

我有用于导航的代码滚动到部分。

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。请帮忙。

1 个答案:

答案 0 :(得分:2)

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

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

将此添加到您的代码中

 <!--- Slider -->    
        <div id="myCarousel" class="carousel slide" data-ride="carousel">
            <div class="carousel-inner">
                <?php foreach ($slider as $slider): ?>
                <div class="item active">
                    <img src="<?php echo base_url('upload/slider/'.$slider->image)?>">
                    <div class="carousel-caption">
                        <h3><?php echo $slider->name?></h3>
                    </div>
                </div>
                <?php endforeach; ?> 
            </div>
            <a class="left carousel-control" href="#myCarousel" data-slide="prev">
                <span class="glyphicon glyphicon-chevron-left"></span>
                <span class="sr-only"> previous</span>
            </a>
            <a class="right carousel-control" href="=#myCarousel" data-slide="next">
                <span class="glyphicon glyphicon-chevron-right"></span>
                <span class="sr-only"> next </span> 
            </a>
        </div>

或者您可以使用 pollyfill.io

之类的pollyfill服务CDN
// 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
  });
}