我正在使用这个:
$vehicleTypeDropdown = element.find(".vehicleTypeDropdown");
然后在稍后的时间点我想找到#pselect
ID 元素。我$vehicleTypeDropdown
看起来像这样,它是jqLite 对象:-
<select class="vehicleTypeDropdown" id="vehicleType">
<option id="#pselect" value="">Please Select</option>
<option ng-repeat="types in selectedType" value="Vt3" class="ng-scope ng-binding">vt3</option>
<option ng-repeat="types in selectedType" value="Vt4" class="ng-scope ng-binding">vt4</option>
</select>
有两个问题——
它写在jqLite文档中,该
.find()
方法只查找标签,而不是类或 ID。那我怎么得到$vehicleTypeDropdown = element.find(".vehicleTypeDropdown");
作为具有
jqLite
内容的对象?我怎样才能找到选项
#pselect
?我想手动删除它,请记住它可以在选项中按任何顺序排列。