如果用户在填写表单时将所需输入字段留空,我知道如何显示错误消息,但我无法对textarea执行相同操作。
答案 0 :(得分:1)
我认为文本区域的变化也是如此,假设它确实
theTextArea.onChange = function(){
if(this.value == ''){
alert('You must supply a value for this field');
}
};
或使用jquery
$(document).ready(
function(){
$('#mytextarea').change(function(){
var $this = $(this);
if($this.val() == ''){
alert('You must supply a value for this '+$("label[for='mytextarea']").text());
}
});
});