我试图在id为“warningLabel”的td中获取文本,添加到文本中,然后将新文本放入td。
我试过了:
$('#warningLabel').html($('#warningLabel').html()+ "Please enter a date.\n");
这不起作用,但它也不会引起萤火虫的任何错误。
如果重要,“warningLabel”可能没有文字开头。
我该怎么做?
更新
有问题的td开始隐藏
我的更多代码:
$(function(){
function fieldsEntered(){
var check = true;
if($('#date').val()==""){
$('#warningLabel').html($('#warningLabel').html()+ "Please enter a date.\n");
check = false;
}
if($('#warningLabel').html()!=""){
$('#warningLabel').show();
}
return check;
}
});