angularjs和js的區(qū)別
angularjs和js的區(qū)別?
人到中年有點(diǎn)甜
2018-11-26 10:06:12
TA貢獻(xiàn)1719條經(jīng)驗(yàn) 獲得超6個(gè)贊
angularjs和js的區(qū)別如下 :
1、范圍不同
angularjs是一套封裝了諸多功能的js框架,而js是通用的javascript代碼的縮寫(xiě)。
2、實(shí)現(xiàn)方式不同
angularjs只要引用現(xiàn)成的js文件就可以使用了,js需要在<script>之間自定義實(shí)現(xiàn)一些函數(shù)。
angularjs用法:
<!doctype html>
<html ng-app>
<head>
<script src="./js/angular-1.0.1.min.js"></script>
</head>
<body>
Hello {{'World'}}!
</body>
</html>
舉報(bào)