angularJS 测试为什么还会有双大括号

angularJS 是1.3.0 的,做了一个简单的测试
test.html 和 angular.min.js 在同一路径,在run 的时候看到结果是
hello {{'word'}}!
为什么还会有双大括号?test.html 如下

<!doctype html>





hello {{'world'}}!

如果直接放在客户端运行,看下js有没有加载,有些浏览器会阻止本地js执行。

world是不用加引号的。

谢谢2位,发现是IE8 问题,用其他浏览器就可以了