插入新行后CSS丢失

发布于 2024-12-01 11:50:54 字数 634 浏览 2 评论 0原文

不幸的是,在使用 javascript 方法(位于另一个 .js 文件中)填充 Flexigrid 时,插入新行后 CSS 丢失了。页面中的其他部分都可以。

我使用以下代码:,

var newTbl = '<tr><td>' + id + '</td><td>' + name + '</td><td></tr>';   

$('#flexSwitch > tbody:last').append(newTbl);

以及我使用的html代码:

<div id="switchGridDiv"  style="width: 100%">
  <table id="flexSwitch" class="flexigrid"> 
   <tbody>

   </tbody>
  </table>          
</div>

我可以使用jquery的.css()方法,但是当考虑flexigrid css的大小时,这肯定会花费太长时间。

有什么建议,为什么会发生这种情况或有其他方法解决它吗?

提前致谢

While populating flexigrid using javascript method (which is in another .js file), unfortunately, the css is lost after I insert new rows. Other sections in the page are ok.

I use the following code:,

var newTbl = '<tr><td>' + id + '</td><td>' + name + '</td><td></tr>';   

$('#flexSwitch > tbody:last').append(newTbl);

And the html code I use:

<div id="switchGridDiv"  style="width: 100%">
  <table id="flexSwitch" class="flexigrid"> 
   <tbody>

   </tbody>
  </table>          
</div>

I can use .css() method of jquery but this will surely take too long when the size of flexigrid css is considered.

Any suggestions, why this might have occurred or any other way how to solve it?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

红尘作伴 2024-12-08 11:50:54

如果删除 > 会发生什么?并使用...

$('#flexSwitch tbody:last').append(newTbl);

另外...删除...末尾多余的

var newTbl = '<tr><td>' + id + '</td><td>' + name + '</td><td></tr>';

What happens if you remove the > and use ...

$('#flexSwitch tbody:last').append(newTbl);

?

Also ... remove the extra <td> at the end of ...

var newTbl = '<tr><td>' + id + '</td><td>' + name + '</td><td></tr>';
反话 2024-12-08 11:50:54

使用flexigrid的flexAddData方法解决了css的问题:

var data = "{page:1, total:3, rows:["+
                "{id:'id0',cell:['101','A']},"+
                "{id:'id1',cell:['102','B']},"+
                "{id:'id2',cell:['103','C']}"+
                    "]}";

$('#flexSwitch').flexAddData(eval('(' + data + ')'));

谢谢您的所有建议

Using flexAddData method of flexigrid solved the issues about css:

var data = "{page:1, total:3, rows:["+
                "{id:'id0',cell:['101','A']},"+
                "{id:'id1',cell:['102','B']},"+
                "{id:'id2',cell:['103','C']}"+
                    "]}";

$('#flexSwitch').flexAddData(eval('(' + data + ')'));

Thank you for all suggestions

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文