AngularJS无法在Xhtml页面中工作

时间:2017-06-15 22:16:13

标签: angularjs eclipse jsf xhtml

我是AngularJS的新手,想在Web应用程序中尝试一下。它是一个带有一些JSF的xhtml文件,我正在关注一个Angular教程,并尝试在webapplication中添加一些代码,但它不起作用。

这是xhtml代码,它在html页面上工作得很好但在xhtml中却不行?谢谢你的帮助

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns = "http://www.w3.org/1999/xhtml">
<head>
  <title>JSF Tutorial!</title>
  <script 
 src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js">
  </script>
 </head>

 <body>

   #{helloWorld.getMessage()}

   <div ng-app="">

    <p>Input something in the input box:</p>
    <p>Name : <input type="text" ng-model="name" placeholder="Enter name 
    here"></p>
    <h1>Hello {{name}}</h1>

</div>

0 个答案:

没有答案