Home  >  Article  >  Web Front-end  >  How to import js files into HTML?

How to import js files into HTML?

青灯夜游
青灯夜游Original
2019-05-31 15:48:1631482browse

You can use the

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!");

Then write an html file, containing The following code:









Use the

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!

Statement:
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