06 2021 档案

摘要:Javascript statement(下) 一、ECMA基本对象 typeof() // Only can judge the type of the obj in simple obj_1 instanceof type_of_obj // Return the boolean 1. ECMA 阅读全文
posted @ 2021-06-29 12:00 notesForKai 阅读(83) 评论(0) 推荐(0)
摘要:Javascript Statement(上) 一、JS基础知识 1. js引用 <!--Mathod 1--> <head> <script src="js_path"></script> </head> <!--Mathod 2--> <body> <script> statement </sc 阅读全文
posted @ 2021-06-22 12:38 notesForKai 阅读(147) 评论(0) 推荐(0)
摘要:Css语法 一、Css引入的四种方式 行内式:在标签中加style属性,值为css代码,不同样式用" ; "号分隔 嵌入式:在head标签中,通过style标签来实现 <head> <style> p{ background-color: red; } </style> </head> 链接式:将c 阅读全文
posted @ 2021-06-10 12:30 notesForKai 阅读(149) 评论(0) 推荐(0)