<div>
次の例では、jQuery を使用して s のリストを反復処理します。
<div id="selectedDefinitionsDiv">
<div id="selectedDef1" class="myclass">
<textarea class="textClass" style="margin-left:5px;width:600px;height:80px;">an adoptive country</textarea>
<input type="button" onclick="removeSelectedDefinition(1)" value="Delete">
</div>
<div id="selectedDef2" class="myclass">
<textarea class="textClass" style="margin-left:5px;width:600px;height:80px;">my adopted state</textarea>
<input type="button" onclick="removeSelectedDefinition(2)" value="Delete">
</div>
</div>
各テキストエリアのデータを引き出したい。上記の例では an adoptive country
、 my adopted state
私が試してみました
$(#selectedDefinitionsDiv).children('myclass').each(function(i) {
var val = $(this).children('textClass').value;
processString( val );
});
しかし、それはまったくループには入りません。私のjQueryの何が問題なのですか?