当我使用Jquery加载函数在DIV中加载页面时,表标记上的表cellpadding和padding css属性不起作用。
这是正常行为吗?
加载页面的代码
$("#ajax_content").load("page.php", function () {
})
page.php上的表格标签
<table cellpadding="2px" style="background-color: white;width: 550px; height: 34px;padding:10px">
由于
编辑:
我发现了问题! 在我正在加载page.php的主页面中有一个像这样的CSS代码
table {border-collapse:collapse;}
问题就是这个问题,现在我删除它后效果很好。
答案 0 :(得分:0)
<table cellpadding="2" style="background-color: white;width: 550px; height: 34px;padding:10px">
cellpadding="2"
代替cellpadding="2px"
和padding:10px"
样式不适用于IE7及更少。
答案 1 :(得分:0)
我发现了问题!在我正在加载page.php的主页面中有一个像这样的CSS代码
table {border-collapse:collapse;}
问题就是这个问题,现在我删除它后效果很好。