我是棱角分明的新人。如果我在页面顶部添加对angular lib的引用,那么我将返回空页。不知道是什么原因。 这是一个代码
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.min.js" type ="text/javascript" />
<body>
<div ng-app>
<input type="text" id="txt1" ng-model = "data"/><br />
The value is {{ data }}
</div>
</body>
</html>
答案 0 :(得分:1)
您应该正确关闭脚本代码以从cdn
加载脚本,script
代码不会自动关闭以关闭它,如标记结尾处的/>
。因此,/>
使用</script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.min.js"
type ="text/javascript">
</script>