0

我对一些简单的 javascript 东西很生气。

我需要一个简单的 javascript 来测试表的 offsetHeight 以动态设置其 div 容器。

我可以在 tableHeight 中获得正确的值,但是“if”条件不起作用..

这里的代码:

var tableHeight = parseInt(document.getElementById("tableData").offsetHeight);

if ( tableHeight>250 ) 
     {
     document.getElementById("tableContainer").style.height = "250px";
     } 

else 
{
BLABLBLABLA
 }

有什么建议吗?多谢你们

4

1 回答 1

0

I have just tested your code, and it works fine.

Here is a jsfiddle: http://jsfiddle.net/k7ug4/

Maybe you forgot to give the tables id's try to console log in the if

if ( tableHeight>250 ) {
 console.log('more than 250');
}
于 2013-10-02T07:58:47.927 回答