gpt4 book ai didi

javascript - JQuery .append 的 标记被忽略

转载 作者:行者123 更新时间:2023-11-30 07:04:59 25 4
gpt4 key购买 nike

<分区>

我有以下 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,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>");

由于我不知道的原因,结束标记没有被注入(inject)到页面中。

我试过上面的代码以及类似的代码:

.append("<option value='Hide Labels'>Hide Label</option></select>")

关于将这些元素“批处理”到单个 .append 中是否有某种排序要求?我想知道这种方法在加载到 DOM 时是否看起来格式不正确,所以它被忽略了......

谢谢!

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com