angularjs不更新自动绑定

时间:2013-04-14 19:11:54

标签: angularjs

我试图编写一个anuglarjs用户界面,我无法通过文本框自动更新data.message的绑定。 有什么不对吗?

<!DOCTYPE html>
<html>
  <head>

  </head>

<body>
<center>

<div ng-app="">
<input type="text" ng-model="data.message">
<h1>{{data.message + "world"}} </h1>
</div>


<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js'></script>
<script type='text/javascript' src='init.js'></script>

<script src="http://code.angularjs.org/angular-0.9.19.js" ng:autobind></script>
<script type="text/javascript">
</script>

它不会自动更新它,我只是得到&#34; 0world&#34;作为回报,感谢您的帮助

1 个答案:

答案 0 :(得分:1)

你正在使用一个非常古老的AngularJS版本。我拿了你的代码,将版本改为1.0.6,它就可以了:

http://jsbin.com/ayahip/2/edit