我在 java 脚本中有数组我希望它可以给出该索引的值并显示到 html 中的数据 div 现在它显示的是数组的索引而不是我想要的值我已经给出了 jsfiddle 链接
<div id="data"></div>
and here is the script
var ad = ['a', 'b', 'c', 'a', 'd', 'e', 'a'];
var con=document.getElementById('data');
var inds = $.map(ad, function(v, i) {
return v == 'b' ? i : null;
});
alert(inds); // 0,3,
var avr1=inds;
con.innerHTML=avr1;