jQuery和AngularJS的区别浅析
3 回答
蓝山帝景
TA贡献1843条经验 获得超7个赞
angularjs和js的区别如下 :
1、范围不同
angularjs是一套封装了诸多功能的js框架,而js是通用的javascript代码的缩写。
2、实现方式不同
angularjs只要引用现成的js文件就可以使用了,js需要在<script>之间自定义实现一些函数。
angularjs用法:
<!doctype html>
<html ng-app>
<head>
<script src="./js/angular-1.0.1.min.js"></script>
</head>
<body>
Hello {{'World'}}!
</body>
</html>
- 3 回答
- 0 关注
- 685 浏览
添加回答
举报
0/150
提交
取消