私は次のHTMLを持っています:
<div id='show-label'>
<select id="comboboxShowLabel">
<option value="">Hide or show labels?</option>
<option value="Show Labels">Show Label</option>
<option value="Hide Labels">Hide Label</option>
</select>
</div>
<select></select>
実行時に親 div にthe を追加したいala:
<div id='show-label'>
</div>
$("#show-label").html("<select id='comboboxShowLabel'>")
.append("<option value=''>Hide or show labels?</option>")
.append("<option value='Show Labels'>Show Label</option>")
.append("<option value='Hide Labels'>Hide Label</option>")
.append("</select>");
私には不明な理由ですが、終了タグがページに挿入されていません。
上記のコードと次のようなものを試しました:
.append("<option value='Hide Labels'>Hide Label</option></select>")
これらの要素を単一の .append に「バッチ処理」する際に、ソート要件はありますか? このアプローチは、DOM にロードするときに整形式に見えないので、無視されるのではないかと思っています...
ありがとう!