我试图在一个新的div中从下拉列表中输出所有选定选项的HTML。但是,每次我选择一个新的复选框时,我的容器都会被更新到所选的值(就像它应该更新的那样),但是它也会从下拉列表中追加以前选择的每个值。以此类推等等。如何只输出一次复选框HTML?
这是我的JS代码:
let emptyArr = [];
$('.dropdown-select-container').find("option:selected").each(function(){
emptyArr.push($(this).html());
});
for (i in emptyArr) {
我是一个noobie,我有复选框和下拉列表,我使用request.form.getlist(“")检索值。如果下拉列表的值在复选框中不存在,我希望继续执行进一步的步骤。
try:
if drop not in check:
return render_template('index.html')
except Exception:
return render_template('error.html')
它总是运行index.html,即使在检查drop值时,我也不使用wtform。我应该如何验证它?提前感谢
我有这段代码,构建了一个选择列表作为布尔响应
var responseList = new List<SelectListItem>();
responseList.Add(new SelectListItem { Text = "Going", Value = bool.TrueString});
responseList.Add(new SelectListItem { Text = "Not Going", Value = bool.FalseString });
ViewData[ViewDataKeys.ResponseTo] = vatO