我已经编写了一个 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>