function里面的index是什么意义

来源:3-2 jQuery的属性与样式之html()及.text()

Aharn

2019-07-29 18:43

function里面的index是什么意义

写回答 关注

2回答

  • Gobbb
    2020-04-03 23:04:43

    举例:

    <div>
        <p>a</p>
        <p>b</p>
        <p>c</p>
    </div>
    <script>
        $('div p').html(function(index, old){
            console.log(index, old + ',')
        })
    </script>
    会打印出0a,1b,2c


  • weixin_慕函数0029613
    2019-07-30 12:10:49

    获取元素的索引位置

jQuery基础 (一)—样式篇

jQuery初入开启样式修炼,体验万能的jQuery样式集搭建网站布局

217509 学习 · 1218 问题

查看课程

相似问题