我观看并阅读了一些关于如何在Visual Studio中运行JavaScript的教程,但是我遇到调试和代码执行问题。这就是我到目前为止所做的。
我发现你不能在HTML文件上使用调试器,但你可以在JavaScript文件上使用。
当我在页面加载后在javascript文件上添加断点时,它永远不会命中。运行时显示的唯一内容是页面上的标题。为什么页面打开时不显示Hello MYName。
Visual Studio 2010 视觉基础知识|网络| ASP.NET空Web应用程序 添加了HTML页面和JavaScript文件
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
<script type="text/javascript" src="JScript1.js" />
</head>
<body>
<script type="text/javascript">
alert(hello("MyName"))
</script>
</body>
</html>
我的Java脚本文件
function hello(name) {
return "hello " + name;
}