0

JsFiddle

I am trying to delete Default from each of the node. I tried following code

$( document ).ready(function() {
$( "table tbody tr td:nth-of-type(1) select option").first().remove();
});

It deleted the element from from the first node. Can someone help me to delete first element from each node.

4

2 に答える 2

2
$("table tbody tr td:nth-of-type(1) select option:first-child").remove();

デモ: http://jsfiddle.net/rqtaz/6/

于 2013-10-15T21:18:17.380 に答える
1

.first()セットの最初の要素を返します。

:first-child親の最初の子のみに一致するように適用する単純なセレクターをフィルター処理するセレクターを使用します。

$("table tbody tr td:first-child select option:first-child")

<option>これは、それぞれの親の最初の子である要素にのみ一致します。

上でも使用できますtd

于 2013-10-15T21:18:28.873 に答える