为什么我不能在<script>的html内使用js

时间:2019-02-06 23:00:51

标签: javascript html node.js

我有一个要制作的应用程序,但我想到的唯一方法是使用html脚本标记内的客户端代码。但是,当我尝试使用脚本时,它不起作用。这是一段代码。 index.html:

  
  
 用户名:
 <身体>
   
 

 

然后我正在使用node.js发送此文件。 index.js:

  app.get('/',(req,res)=> {
 res.sendFile(__ dirname +'/index.html');
});
app.listen(8080);
 

当我输入localhost:8080时,它没有console.log'Hello World'。 我确实知道有什么小错误吗?

0 个答案:

没有答案