咏竹莉
where there is a will,there is a way
摘要: 浏览器 浏览器窗口的内部宽: window.innerWidth 浏览器窗口的内部高: window.innerHeight 内部宽高是指去除菜单栏、工具栏、边框等站位元素,用于显示网页的净宽高。 浏览器的整体宽高: window.outerWidth、 window.outerHeight nav 阅读全文
posted @ 2021-06-30 14:32 咏竹莉 阅读(686) 评论(0) 推荐(0)
摘要: 定义个一个函数,把继承的动作封装起来, 这个inherits() 函数可以复用: function inherits(Child, Parent){ var F = function(){}; F.prototype = Parent.prototype; Child.prototype = new 阅读全文
posted @ 2021-06-30 14:19 咏竹莉 阅读(54) 评论(0) 推荐(0)