我用敲除和得到了我的模型視圖模板這些回來......不能得到文本區域的價值
<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());
});
我該怎麼做?
感謝
你肯定對HTML格式? – 2012-07-11 19:47:08
儘管使用它來綁定,但您似乎沒有充分利用淘汰賽獲取您的模型信息。你確定你需要用jQuery收集這些信息嗎? – Tyrsius 2012-07-11 21:57:40
綁定你的textareas的值:綁定,你/不需要jQuery來訪問值! – thomaux 2012-07-12 08:20:40