如何添加样式以追加功能

时间:2015-07-10 06:51:42

标签: php jquery mysql

我想改变字体和颜色的颜色为append函数中的内容创建内容align ='center'。内容是从db& amp;中获取的值。在数组中。 请帮助!

currentrow
    .find('td')
    .next()
    .css('background-color', 'red')
    .addClass('active')
    .attr("title", namearray[j])
    .append(namearray[j]);

1 个答案:

答案 0 :(得分:1)

你走了,

http://codepen.io/mkdizajn/pen/pJVWem?editors=101

希望能解决它..

我认为关键部分是:

$('table tr')
    .eq(1) // find second row for ex..
    .find('td').eq(1) // find second cell for ex..
    .css('background-color', 'red') // give it some color
    .addClass('active').attr("title", 'mirko').css('text-align', 'center') // center position
;

HTH