我写了一个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>
答案 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>