怎么让js显示在html中
时间: 2023-11-13 16:05:02 浏览: 62
在 HTML 中使用 JavaScript 通常有两种方法:
1. 在 <script> 标签中编写 JavaScript 代码。
```html
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Example</title>
</head>
<body>
<h1>JavaScript Example</h1>
<script>
// JavaScript 代码
document.write("Hello World!");
</script>
</body>
</html>
```
2. 将 JavaScript 代码存储在外部文件中,然后使用 <script> 标签将其链接到 HTML 文件中。
```html
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Example</title>
<script src="example.js"></script>
</head>
<body>
<h1>JavaScript Example</h1>
<p id="demo"></p>
</body>
</html>
```
其中 `example.js` 中的代码如下:
```javascript
document.getElementById("demo").innerHTML = "Hello World!";
```
这将在页面中显示 "Hello World!"。
阅读全文