$.each( headings, function() {
$('#heading').append($("<option />",{ value: this, text: this }));
});
html 验证器显示了这一点
<option value="abc"></option>
<option value="xyz"></option>
</select>
该选项的文本未打印。如果我使用哈希它可以正常工作
$.each( headings, function() {
$('#heading').append($("<option />",{ value: this, text: this }));
});
html 验证器显示了这一点
<option value="abc"></option>
<option value="xyz"></option>
</select>
该选项的文本未打印。如果我使用哈希它可以正常工作