Visual studio 尝试引用 index.js 文件时无法识别 src 属性
Visual studio not recognizing src attribute when trying to refer to the index.js file
我正在文件 "index.js" 中编写我的 javascript 代码。当我在 "index.html" 文件中使用 src 属性时,它不起作用。我正在使用 Visual Basic 编辑器。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-
scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script> src="index.js" </script>
</body>
</html>
当我 运行 实时服务器时,我希望它执行两个文件中的代码。
正如 SLasks 在评论中提到的,src
是一个属性而不是内容,这意味着您的 script
标签应该像这样:
<script src="index.js"> </script>
使用 <script>
标签时,您应该将 src 用作 属性 ,而不是 Html 内容。
所以不要这样做:
<script> src="index.js" </script>
你应该这样做:
<script src="index.js"></script>
要了解有关属性的更多信息,我强烈建议您在 w3schools 等网站上进行查找。
我正在文件 "index.js" 中编写我的 javascript 代码。当我在 "index.html" 文件中使用 src 属性时,它不起作用。我正在使用 Visual Basic 编辑器。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-
scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script> src="index.js" </script>
</body>
</html>
当我 运行 实时服务器时,我希望它执行两个文件中的代码。
正如 SLasks 在评论中提到的,src
是一个属性而不是内容,这意味着您的 script
标签应该像这样:
<script src="index.js"> </script>
使用 <script>
标签时,您应该将 src 用作 属性 ,而不是 Html 内容。
所以不要这样做:
<script> src="index.js" </script>
你应该这样做:
<script src="index.js"></script>
要了解有关属性的更多信息,我强烈建议您在 w3schools 等网站上进行查找。