AngularJS基于用户输入切换样式 [英] AngularJS switch stylesheets based on user input

查看:96
本文介绍了AngularJS基于用户输入切换样式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何切换/切换的AngularJS页的基于用户点击一个按钮样式表?

How can I switch / toggle the stylesheet of an AngularJS page based on a button click by the user?

推荐答案

实际上,你可以放置在HTML级控制器,并修改链接标记的href:

You can actually place a controller at the html level and modify the link tag's href:

演示

Demo

控制器:

var app = angular.module('plunker', []);

app.controller('MainCtrl', function($scope) {
  $scope.name = 'World';

});

app.controller('headController', function($scope) {
   $scope.stylePath = 'style.css'
   $scope.changePath = function() {
    $scope.stylePath='style2.css';

  };
});

标记:

<!doctype html>
<html ng-app="plunker" ng-controller='headController' >
<head >
  <meta charset="utf-8">
  <title>AngularJS Plunker</title>
  <script>document.write('<base href="' + document.location + '" />');</script>
  <link rel="stylesheet" href="{{stylePath}}">

  <script src="http://code.angularjs.org/1.1.4/angular.js"></script>
  <script src="app.js"></script>
</head>
<body ng-controller="MainCtrl">
  Hello {{name}}!
  <button ng-click="changePath()">Change</button>
</body>
</html>

这篇关于AngularJS基于用户输入切换样式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆