摘要: JavaScript有两种调用方式 一、在网页指定位置直接插入<srcipt></script>标签,并在其中书写JavaScript代码 <script type="text/javascript"> alert('hello world'); </script> 二、引入外部js文件 <scri 阅读全文
posted @ 2020-08-02 22:51 leatral 阅读(227) 评论(0) 推荐(0) 编辑
摘要: CSS共有四种调用方式。 一、直接为对应标签设置style属性(内联式) <p style="color:red">。。。。。。</p> 这种方式无法复用,修改起来很繁琐 二、在HTML的<head></head>内通过<style></style>书写(嵌入式) <head> <meta char 阅读全文
posted @ 2020-08-02 22:46 leatral 阅读(419) 评论(0) 推荐(0) 编辑