我想知道,如何使用Jquery检查div的高度是否大于700px?

任何帮助将不胜感激。谢谢

最佳答案

if ($('#mydiv').height() > 700) {
    // Greater than 700px in height
}

09-30 13:32