标签: jquery
我尝试使用REQUIRED添加.attr("required","true");属性,但不强制使用文本区域。不想让所有textarea成为强制性的,因此试图动态地进行。
REQUIRED
.attr("required","true");
textarea
答案 0 :(得分:35)
$('#myTextarea').prop('required',true);