我试图在 td 中获取文本,其 id 为“warningLabel”,添加到文本中,然后将新文本放入 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;
}
});