名前を配列に格納しようとしている入力ボックスが多数あります。私は現在これを使用して名前を取得しています:
var getImplementedNames = function (selector){
$(selector).each(function() {
console.log($( this ).attr('name').replace('imp-', ''));
});
}
console.log(getImplementedNames('[id^=imp]'));
これは機能しますが、すべての結果を配列に追加したいと思います。私はもう試した;
var array = [getImplementedNames('[id^=imp]')];
console.log(array);
未定義の配列を返します。
これがどのように適切に処理されることになっているのかわかりません。