中提取数据页-6ren"> 中提取数据页-我知道这与另一篇文章类似,并且我使用了该答案,但是,因为该类具有 c 分页,所以会导致错误。 const pagesList = Array.from( document.getElementsB-6ren">
gpt4 book ai didi

Javascript从
  • 中提取数据页
  • 转载 作者:行者123 更新时间:2023-12-03 00:08:58 24 4
    gpt4 key购买 nike

    我知道这与另一篇文章类似,并且我使用了该答案,但是,因为该类具有 c 分页,所以会导致错误。

    const pagesList = Array.from(
    document.getElementsByClassName("c-pagination__item"), // collection to create the array from
    c-pagination__item => c-pagination__item.getAttribute('data-page') // mapper function
    );
    console.log(pagesList);

    我已经尝试过()但没有帮助。如何让 c-pagination_item 被视为一件事?我收到的错误是:异常:语法错误:无效的箭头函数参数(箭头函数周围的括号可能有帮助)

    最佳答案

    映射器函数中的参数 c-pagination__item 不是有效的 JS identifier- 不是有效字符。

    尝试用_替换它

    const pagesList = Array.from(
    document.getElementsByClassName("c-pagination__item"), // collection to create the array from
    c_pagination__item => c_pagination__item.getAttribute('data-page') // mapper function
    );
    console.log(pagesList);

    关于Javascript从 <li class ="c-pagination__item"data-page ="2"> 中提取数据页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54830969/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com