日常生活的交流与学习

首页 新随笔 联系 管理

2022年2月16日 #

摘要: this在全局作用域下指向什么? 这个问题非常容易回答,在浏览器中测试就是指向window 所以,在全局作用域下,我们可以认为this就是指向的window console.log(this); // window var name = "why"; console.log(this.name); 阅读全文
posted @ 2022-02-16 19:28 lazycookie 阅读(40) 评论(0) 推荐(0) 编辑

摘要: 相邻兄弟选择器 就是选择紧跟在后面的一个兄弟元素 符号加号+ 所有兄弟选择器 就是选择所有的兄弟元素 符号波浪号~ 例子 效果 关键代码 代码 <!DOCTYPE HTML> <html> <head> <style type="text/css"> h1 + p {background-color 阅读全文
posted @ 2022-02-16 11:05 lazycookie 阅读(755) 评论(0) 推荐(0) 编辑