我希望能够遍历许多名为"#option1"、"#option2"等的id。问题是交互式表单,我不知道会有多少选项。所以我需要一种方法来迭代用户单击("#dothis")时 DOM 中的数量。
然后我需要获取这些选项的值,放入一个名为arraylist的数组中。
$("#doThis").on("click", function() {
var optionone = $("#option1").val();
var optiontwo = $("#option2").val();
var optionthree = $("#option3").val();
var optionfour = $("#option4").val();
var optionfive = $("#option5").val();
var arrayList = [optionone, optiontwo, optionthree,
optionfour, optionfive];
var decide = arrayList[Math.floor(Math.random() *
arrayList.length)];
$("#verdict").text(decide);
}); // end of dothis click event
正如安迪所说,给每个选项都相同的类。在我的示例中,它是"选项项"。
$("#doThis").on("click", function() {
var arrayList = [];
$('.option-item').each(function(i) {
arrayList[i] = $(this).val();
});
var decide = arrayList[Math.floor(Math.random() *
arrayList.length)];
$("#verdict").text(decide);
});
现在,每个值都存储在数组中。
见小提琴。
问候蒂米
按原样使用代码,您可以使用选择器来选择ID以"选项"开头的所有内容,就像[id^="option"]
一样,以下是使用它的方法:
$("#doThis").on("click", function () {
var arrayList = [];
$('[id^="option"]').each(function (index, element) {
arrayList.push($(element).val() );
});
var decide = arrayList[Math.floor(Math.random() *
arrayList.length)];
$("#verdict").text(decide);
}); // end of dothis click event