检查是否使用IF ELSE隐藏DIV

时间:2013-09-20 15:07:17

标签: javascript jquery

我写了一个JQUERY来切换DIV的可见性,这很好用,但我需要同时调整页面的大小,但是VSE2012强调了一些大括号,说'''预期并说语法错误对于'其他'。这是我的代码:

    <script>
 $(document).ready(function () {
     $("p").click(function () {
         $("#teamtables").toggle(); 
         If ( $("#teamtables").is(":visible") ) {
             $('.mPage').css({ "height": "2600px" });
         } else {
             $('.mPage').css({ "height": "700px" });
        }
    });
 });
</script>

1 个答案:

答案 0 :(得分:5)

Javascript区分大小写,将If更改为if 试试这个:

<script>
 $(document).ready(function () {
     $("p").click(function () {
         $("#teamtables").toggle(); 
         if ( $("#teamtables").is(":visible") ) {
             $('.mPage').css({ "height": "2600px" });
         } else {
             $('.mPage').css({ "height": "700px" });
        }
    });
 });
</script>