摘要:
this在全局作用域下指向什么? 这个问题非常容易回答,在浏览器中测试就是指向window 所以,在全局作用域下,我们可以认为this就是指向的window console.log(this); // window var name = "why"; console.log(this.name); 阅读全文
2022年2月16日 #
摘要:
相邻兄弟选择器 就是选择紧跟在后面的一个兄弟元素 符号加号+ 所有兄弟选择器 就是选择所有的兄弟元素 符号波浪号~ 例子 效果 关键代码 代码 <!DOCTYPE HTML> <html> <head> <style type="text/css"> h1 + p {background-color 阅读全文