How to import js files into HTML?

青灯夜游
Release: 2019-06-03 15:09:30
Original
31824 people have browsed it

You can use the <script> tag in HTML to introduce js files through the src attribute. The <script> tag is used to define client-side scripts, such as JavaScript. </script>

How to import js files into HTML?

#The script tag element can either contain script statements or point to an external script file through the src attribute. The required type attribute specifies the MIME type of the script.

Example:

Create an external js file (hello.js), containing the following code:

alert("Hello world!");
Copy after login

Then write an html file, containing The following code:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<script type="text/javascript" src="hello.js" ></script>
</body>
</html>
Copy after login

Use the <script> tag to introduce js files through the src attribute. The running output is as follows: </script>

How to import js files into HTML?

#Explanation: The

src attribute specifies the URL of the external script file. You can use a relative path or an absolute path.

The above is the detailed content of How to import js files into HTML?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template