我正在使用Backbone.js
文件从后端检索数据并将其显示在 HTML 上。在这里,我可以正确检索值,但无法在选择选项中显示检索到的值。这里缺少什么?
HTML
<select class="custom-select" name="number-of-sets" id="number-of-sets">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
脚本
var c = window.setInterval(function() {
clearInterval(c);
$("#number-of-sets").find('option:selected').removeAttr('selected');
$("#number-of-sets option").each(function() {
$(this).prop("selected",false);
if(2==$(this).val()) //say i retrieved value '2' and i got it true
{
alert("check");
$(this).prop("selected",true);
alert("no of seats::"+$(this).val()+";"+$(this).prop("selected"));
return false;
}
});
}, 500);
this.render();
},