0

我正在使用带有 IE10 的 JQuery 版本 1.8.11。

我有一个单行表。表id是#listTable<tr>id是#listTableRow<td>id是#days

该行有许多单元格,每个单元格中都有一个具有相同 id: 的下拉列表#searchString。我希望能够选择第三个单元格中的下拉列表并将其选项设置为option:first. 我已经能够td使用下面的代码进行选择,但不能选择特定的下拉列表。如何选择表格中的第三个下拉列表?

<script type="text/javascript">

  $(document).ready(function () {
    var nos = $('#listTable #searchString').length;

    $.each($checkboxes, function () {
      if ($(this).is(':checked')) {
        $('#listTable #days:nth-child(3)').css('border', '2px dashed blue');             
    });

  });                 
</script>
4

1 回答 1

1

这将选择第三个单元格中的下拉列表并将其选项设置为 option:first

$('#listTable td').eq(2).find("#searchString option:first").prop('selected', true);
于 2013-04-14T09:46:05.833 回答