$(window).height 不能获取窗口的高度
页面前面也有 <!DOCTYPE html>为什么输入这个指令出来的是
ƒ ( margin, value ) {
var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" ); “为什么输入这个指令出来的是”,在哪里操作? 我这里没问题
这几条语句 都没有问题
<script>
console.log($(window).height());
console.log($(document).height());
console.log($(window).width());
console.log($(document).width());
</script> 不二如是 发表于 2020-4-25 14:52
“为什么输入这个指令出来的是”,在哪里操作?
我打开自己写的网页,然后右键检查在console里输入 $(window).height
以及这些程序的过程中 把$(window).height赋予一个值,然后用console.lag() 打印出来都是这个结果 本帖最后由 不二如是 于 2020-4-27 15:50 编辑
Ootme 发表于 2020-4-27 14:13
我打开自己写的网页,然后右键检查在console里输入 $(window).height
以及这些程序的过程中 把$(window ...
$ 操作往往是页面中加载了 jQuery
如果你会打断点,直接可以在控制台调用 $(window).height
如果不会,用:
页:
[1]