recherche

Maison  >  Questions et réponses  >  le corps du texte

javascript - js map() 方法

在页面中有很多class 为survey的p,我想得到现在显示的survey是所有survey中的index。 所以

var showed =$('.survey').filter(function(){
  return $(this).css("display") == "block";
});
var index = $(".survey").map(function(){return this.id}).indexOf(showed.first().id);

报错没有indexOf方法,因为$(".survey").map(function(){return this.id})是一个object [object object]。 请大家帮忙看一下啊,谢谢了。为什么map返回不是array?

PHPzPHPz2791 Il y a quelques jours743

répondre à tous(3)je répondrai

  • 数据分析师

    数据分析师2017-10-01 01:18:10

    javascript - méthode js map() - Questions et réponses sur le site Web chinois PHP-javascript - méthode js map() - Questions et réponses sur le site Web chinois PHP

    Jetez un œil et apprenez.

    répondre
    0
  • 阿神

    阿神2017-04-10 12:48:37

    因为 jQuery 返回的是 jQuery 对象。你需要调用它的 .get() 方法。参见 jQuery 的 .map() 的文档。

    répondre
    0
  • ringa_lee

    ringa_lee2017-04-10 12:48:37

    可以使用.get(),或者使用$.map(surveys,function(n,i){return n.id;});都能得到想要的结果。好好看文档去了

    répondre
    0
  • Annulerrépondre