ノックアウトを使用して、ModelView テンプレートからこれらを取り戻しました...
<div class="both">
<td>
<h3 data-bind="text: MyText"> What type of fruit is healthy ?</h3>
<textarea data-bind="attr:{id: Question}" class="my-response" id="1"> this is my text area value </textarea>
</td>
</div>
<div class="both">
<td>
<h3 data-bind="text: MyText"> What type of Veg is healthy ?</h3>
<textarea data-bind="attr:{id: Question}" class="my-response" id="2"> this is my text area value</textarea>
</td>
</div>
テキストエリアの値を取得したいのですが、うまくいきません..
$('.both').each(function() {
alert($('.my-response').val());
});
どうやってやるの?
ありがとう