Heim  >  Artikel  >  Web-Frontend  >  Einführung in JavaScript und Einführung in JS-Code

Einführung in JavaScript und Einführung in JS-Code

coldplay.xixi
coldplay.xixinach vorne
2021-02-03 17:49:201713Durchsuche

Kostenlose Lernempfehlung: JS-Video-Tutorial ee


hello.js-Datei

<!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>
Einführung in JavaScript und Einführung in JS-Code

Verwandte kostenlose Lernempfehlungen:

Javascript(Video)

Das obige ist der detaillierte Inhalt vonEinführung in JavaScript und Einführung in JS-Code. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Dieser Artikel ist reproduziert unter:csdn.net. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen