将数据加载到html表中而不重新加载整个表

时间:2009-10-23 19:43:00

标签: jquery html-table

是否可以在td标签之间加载新数据并使用jQuery更改td标签的背景图像?如果我给每个标签添加了ID?

如果是这样,会怎么做?

1 个答案:

答案 0 :(得分:3)

// set the background of all td tags
$('td').css('backgroundImage', 'url('+url+')');

// set the content of a particular tag
$('td#someID').html(yourHtml);

// set the background and content of a specific tag
$('td#someID').html(yourHtml).css('backgroundImage', 'url('+url+')');

所有这些都在jQuery网站上详细记录:http://docs.jquery.com/