我有以下 HTML:
<select class="file_image_type" name="file_image_type">
<option>Gallery</option>
<option>Feature</option>
<option>Thumbnail</option>
</select>
这是动态生成的,并为每个项目重复。由于只能有一个特征图像,因此每当将新图像选为“特征”时,我想重置任何标记为“特征”的选项值。
我试过这个 jQuery 但它似乎没有响应:
current.find(".file_image_type option[value='Feature']").val("Gallery");
我可以使用以下方法将图像设置为 Feature 就好了:
current.find(".file_image_type").val("Feature");