使用jquery更改表td样式

时间:2017-05-10 10:13:41

标签: javascript jquery html-table

我有jquery追加表。在那里我使用CSS style="display:none"隐藏了第一行的列,并且在一些事件之后我想要显示该列。

my table id is-#148
tr id is -row1

我想改变那个tr的第一个td风格。 我提到了很多,但我没有得到适当的解决方案。

行是

 <tr  id="trid1"><td style="display:none"><input type="submit" class="btn btn-success"  onclick="choose(2,<?php echo $loop->us_id;?>);"></td><td> <button class="btn btn-info btn-labeled fa fa-plus fa-lg" id="us_id" onclick="fun(<?php echo $loop->us_id;?>)" >Add Task</button></td></tr>

我想使用jQuery / Javascript更改CSS值。

2 个答案:

答案 0 :(得分:0)

$("#trid1 td:first-child").show();

这应该可行。

答案 1 :(得分:0)

试试这个。

$(function(){
   //$('table').find('td').eq(0).show();

  // or

  //$('table').find('td:nth-child(1)').show();

  // or

  $('table').find('td:first-child').show();
});

https://jsfiddle.net/vandolphreyes29/66uh0hz2/10/