"|"
入力があり、値を取得して記号で区切る必要があります。
私の入力:
必要なものを出力します。
00:00 | 00:00 | 00:00
私のコードは:
(そしてそれは機能していません)
var timesArray = $('table').find('input');
var times = timesArray.val();
$('.alltimes').val(times);
"|"
入力があり、値を取得して記号で区切る必要があります。
私の入力:
必要なものを出力します。
00:00 | 00:00 | 00:00
私のコードは:
(そしてそれは機能していません)
var timesArray = $('table').find('input');
var times = timesArray.val();
$('.alltimes').val(times);
コード内のコメントを参照してください:
// Create an array to store the input values
var inputValues = [];
// Iterate over input's and store their value in the array
$('table').find('input').each(function () {
inputValues.push(this.value);
});
// Create pipe=delimited string from array of values
var delimitedInputValues = inputValues.join("|");
追加情報
.each()