插入新行后CSS丢失
不幸的是,在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果删除 > 会发生什么?并使用...
?
另外...删除...末尾多余的
What happens if you remove the > and use ...
?
Also ... remove the extra
<td>
at the end of ...使用flexigrid的flexAddData方法解决了css的问题:
谢谢您的所有建议
Using flexAddData method of flexigrid solved the issues about css:
Thank you for all suggestions