suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - Die Shift()-Methode von JS ist ungültig?

Wie bereits erwähnt, lautet der Code wie folgt:

<ul class="demo">
    <li>1</li>
    <li>2</li>
    <li>3</li>
    <li>4</li>
    <li>5</li>
    <li>6</li>
</ul>
<script>
    var l = document.getElementsByClassName("demo")[0];
    var a = l.children;
    var r=a.shift();
    console.log(r);//报错:a.shift is not a function?
</script>

Array-ähnliche Objekte können die Shift-Methode API nicht aufrufen?

滿天的星座滿天的星座2735 Tage vor1110

Antworte allen(4)Ich werde antworten

  • 扔个三星炸死你

    扔个三星炸死你2017-07-05 10:47:34

    类数组不是数组,没有继承数组的相关api,
    可以用call或者apply来绑定this,
    比如

    var r = [].shift.call(a)

    ps: shift还涉及到操作数组的内容,刚试了一下,强行用call来shift类数组对象,会报相关对象不能修改length的限定,如果还涉及dom的处理,建议还是用相关dom操作,比如removeChild啥的,这个就不扩展了。 dom类数组对象的相关资料可以在mdn找找,比如:https://developer.mozilla.org...

    Antwort
    0
  • 代言

    代言2017-07-05 10:47:34

    shift会修改原数组,导致length属性改变,但是length是只读的。通过下面方式可以使用。

    <ul class="demo">
        <li>1</li>
        <li>2</li>
        <li>3</li>
        <li>4</li>
        <li>5</li>
        <li>6</li>
    </ul>
    </body>
    
    <script>
        var l = document.getElementsByClassName("demo")[0];
        var a = l.children;
        var arry = [...a];
        var r=arry.shift();
        console.log(r);
    </script>

    Antwort
    0
  • 大家讲道理

    大家讲道理2017-07-05 10:47:34

    当然,shift是数组的方法,可以先把类数组转成数组再调用
    Array.prototype.slice.call(arraylike);

    Antwort
    0
  • 欧阳克

    欧阳克2017-07-05 10:47:34

    console.log(a)
    可以看到:__proto__:HTMLCollection HTMLCollection中并没有shift方法。

    Antwort
    0
  • StornierenAntwort