私はdiv id(オークション)を持っていますが、私はオークションリストの子とHTMLを入れ替えたいと思います。しかし、jQueryはオークションリストのdivの子を選択することはできません。ここでjQueryのnth-childセレクタが動作しない
はHTMLです:
<div id="all">
<div id="auctions"></div>
</div>
<div id="auction-list" class="hide">
<div class="auction">Test</div>
<div class="auction">Test</div>
</div>
はここでjQueryの:
まずアラート
を2
:
alert($("#auction-list").children().length);
alert($("#auction-list").html());
alert($("#auction-list:nth-child(1)").html());
alert($("#auction-list:nth-child(2)").html());
$("#auctions").html($("#auction-list:nth-child(1)").html());
そして、ここではJavascriptがアラートの出力であります
セカンドアラート
<div class="auction">Test</div>
<div class="auction">Test</div>
サードアラート
null
私はここで何を望むのですか?
これはそれです。私はコロンの前にスペースが必要でした。 – Jarred