欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

javaScript介绍引入js代码

程序员文章站 2022-03-23 10:20:49
...


javaScript介绍引入js代码

免费学习推荐:js视频教程

javaScript-如何引入js代码

直接po代码和截图

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>js01-如何引入js代码</title>
<script type="text/javascript">
//script标签的type="text/javascript"可以省略
	document.write("江西省赣州市于都县<br/>");
	console.log("hello hi \n world ");
	console.log("tom ok\njack");
	console.log("jerry<br/>ok");
</script>
<script src="hello.js" type="text/javascript"></script>
</head>
<body>
<h1>js01-如何引入js代码</h1>
<!-- 
如何引入js代码?
1.直接内嵌
2.引入外部的js文件
 -->
<script type="text/javascript">
//script标签的type="text/javascript"可以省略
	document.write("我的老家在江西省赣州市于都县<br/>");
</script>
<script src="hello.js" type="text/javascript"></script>
</body>
</html>

hello.js文件

document.write("好好工作,努力赚钱!");

javaScript介绍引入js代码

相关免费学习推荐:javascript(视频)

以上就是javaScript介绍引入js代码的详细内容,更多请关注其它相关文章!