如何使用jquery添加到td的内容?

时间:2013-08-03 06:10:09

标签: jquery string html-table

我试图在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;

}

});

1 个答案:

答案 0 :(得分:3)

您听说过.append()吗?

试试吧,

$('#warningLabel').append("Please enter a date.<br>");

以下是 DEMO ,了解其运作方式。

在将内容添加到warningLabel后,请尝试显示td。