我試圖在具有多個文本區域的情況下獲取特定textarea的值。 確實,我得到了第一個的價值,但我無法得到下一個。 我已經嘗試了以下,但沒有工作。從一組文本中獲取一個textarea的值
// jquery:
$('.SendDescription ').click(function() {
var description = $('.description ').val();
//var description = $(this).closest('label').find('.description').val(); !!! Not working ...
// var description = $(this).prev('.description').val(); !!! Not working ...
if (description.length < 3) {
// do NOT process the form.
}
// html:
1- <textarea class="description ></textarea>
<input type="button" value=" send " class="SendDescription " />
2- <textarea class="description ></textarea>
<input type="button" value=" send " class="SendDescription " />
3- <textarea class="description ></textarea>
<input type="button" value=" send " class="SendDescription " />
..............
謝謝。
您的標記中的類屬性加引號未關閉不必要的空間等等,不知道這是複製粘貼問題。 CHeck this http://jsfiddle.net/C92N6/ – PSL
http://stackoverflow.com/users/1009603/psl它正在處理jsiddle b ut我得到錯誤信息: – test
TypeError:描述未定義 if(description.length <3){ – test