検索

ホームページ  >  に質問  >  本文

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?

PHPzPHPz2793日前746

全員に返信(3)返信します

  • 数据分析师

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

    javascript - js map() メソッド - PHP 中国語 Web サイト Q&A - javascript - js map() メソッド - PHP 中国語 Web サイト Q&A

    見て学んでください。

    返事
    0
  • 阿神

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

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

    返事
    0
  • ringa_lee

    ringa_lee2017-04-10 12:48:37

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

    返事
    0
  • キャンセル返事