我的 HTML 文件中有以下代码
<select>
<option>1</option>
<option>2</option>
<option>3</option>
<!-- ......... -->
<option>50000</option>
</selcet>
使用 jQuery 我得到
var subHTML=$("select").html();
我可以通过subHTML字符串中的innerHTML找到一个选项标签,插入属性“selected”,然后将编辑后的字符串放回选择标签
$("select").html(editedString);
编辑
我试过了
var strel=$(subHtml).find('option:contains("123")').attr('selected','selected');
$("select").html(strel);
但它只向选择标签添加了一个选项。