我想通过单击复选框来更新所有下拉列表。我正在使用 foreach 来获取所有选中的复选框。
这将更新页面上的所有内容,但我想使用类名而不是字段名来完成此操作
$('select[name=order_status] option[value=1]').attr('selected', 'selected');
我想要这样的东西“.shipping_'+do_csv+'
$('.option_completed').click(function() {
var do_csv = [];
$("input[name='options[]']:checked").each(function() {
do_csv.push($(this).val());
$(".shipping_'+do_csv+' option[value=1]").attr('selected', 'selected');
});
});