我试图在拥有多个文本区域的同时获取特定文本区域的值。事实上,我得到了第一个的价值,但我无法得到下一个的价值。我尝试了以下但没有奏效。
// 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 " />
..............
谢谢你。