JavaScript DOM操作技术---动态脚本和动态样式
动态脚本
创建动态脚本有两种方式。
1、引入外部文件
1 | <script type="text/javascript" src="aqing.js" ></script> |
2、直接插入JavaScript代码
1 | function loadScript(url) { |
动态样式
能够把CSS样式包含到HTML页面中的元素有两个。其中,<link>元素用于包含来自外部的文件,而<style>元素用于指定嵌入样式。与动态脚本类似。所谓动态样式是指在页面刚加载时不存在的样式;动态样式是页面加载完成后动态添加到页面中的。
1、插入外部文件
1 | <link rel="stylesheet" type="text/css" href="style.css"> |
2、直接插入JavaScript代码
1 | function loadStyleString(css) { |
愿你的坚持终有收获。
Invitation
aqing
962555446
created:15/04/2021
Welcome to Candyhome
Use this card to join the candyhome and participate in a pleasant discussion together .
Welcome to aqing's candyhome,wish you a nice day .
评论