2013-11-28 49 views
0

我已經用下面的代碼片段定義了表。在運行時將col添加到html表的colgroup中

<div class="gridheadercontainer"> 
     <table class="table" cellspacing="0"> 
      <colgroup> 
       <col style="width: 150px;"> 
       <col style="width: 150px;"> 
       <col style="width: 150px;"> 
       <col style="width: 150px;"> 
       <col style="width: 150px;"> 
      </colgroup> 
      <thead> 
      <tr class="columnheader" style="cursor: pointer;"> 
       <th class="headercell"><div class="headercelldiv">Task name</div></th> 
       <th class="headercell"><div class="headercelldiv">Start time</div></th> 
       <th class="headercell"><div class="headercelldiv">End time</div></th> 
       <th class="headercell"><div class="headercelldiv">Duration</div></th> 
       <th class="headercell"><div class="headercelldiv">Status</div></th> 
       <th class="headercell"><div class="headercelldiv"></div></th> 
      </tr> 
      </thead> 
      <tbody class="hide"><tr><td></td><td></td><td></td><td></td><td></td></tr></tbody> 
     </table> 
    </div> 

在這種情況下,我使用下面的代碼片段將col添加到colgroup表。

$('.gridheadercontainer table colgroup').prepend(doc.createElement('col')); 

但它會在第0個索引中添加該列。 如何山坳到最後COLGROUP表

回答

1

你的意思append()

$('.gridheadercontainer table colgroup').append(doc.createElement('col')); 
+0

多謝多謝您的回覆,我曾嘗試提供的代碼。但仍然面臨同樣的問題,它沒有添加到最後索引的colgroup – Raja

+0

@Raja你可以分享你的腳本 –

+0

嗨謝謝你在簡單的HTML它工作正常。我會檢查我的實施。謝謝 – Raja