DataTable在firefox浏览器中失真

时间:2014-08-10 16:40:20

标签: javascript css datatable

我在我的应用程序中使用数据表用于数据填充但是在我的应用程序中数据表在IE 9中正常运行但在Firefox浏览器中完全失真。任何人都可以帮助我。这是我正在使用的表格

 <table width='100%' align="center" cellpadding="0" cellspacing="10"
    border="1" name="userSTPForm" id="metalPager">
    <thead>
        <tr >               
            <th style="width: 130px;">SAPCODE</th>
            <th style="width: 165px;">FIRST NAME</th>
            <th style="width: 165px;">LAST NAME</th>
            <th style="width: 130px;">Organization Name </th>
            <th style="width: 130px;">MAIL</th>
            <th style="width: 130px;">Mobile</th>
            <th style="width: 130px;">STATUS</th>               
            <c:if test="${makePaymentFlag==true}">
                <th style="width: 130px;">
                    PAYMENT
                </th>
            </c:if>
            <c:if test="${isTmlAdminRole==true}">
                <th style="width: 170px;">
                    APPROVE/REJECT
                </th>
            </c:if>   

</tr>
    </thead>
    <tbody>

1 个答案:

答案 0 :(得分:0)

现代浏览器有时拒绝弃用的属性。因为对新版本的html,css等有适应性。最好使用最新的属性来设置样式并制作标记。在chrome,firefox或任何现代浏览器上测试应用程序也是一种很好的做法。 Internet Explorer有时会阻止脚本,或者无法正常使用所需的扩展。