当我点击一个按钮时,它应该在angularjs中显示html页面(单页面应用程序)

时间:2017-11-15 06:51:30

标签: angularjs angular-ui-router

我打算设计一个网站,当我点击一个按钮时,它应该显示html的内容。

HTML

 <a ui-sref="about">about</a>
    <a href="" ng-click="home()" >home</a><div ng-include="templateURL"></div>
    <ui-view></ui-view>

JS:

 app.controller("home", hom); function hom($scope) {
  $scope.home = function(){
   $scope.templateURL = 'templates/hello.html';  }}

1 个答案:

答案 0 :(得分:0)

您的问题的答案是 ngRoute / ui-route 。 您可以使用上述解决方案之一。

在这里查看演示: https://www.w3schools.com/angular/angular_routing.asp