AngularJS基于用户输入切换样式

编程入门 行业动态 更新时间:2024-10-25 11:28:31
本文介绍了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="code.angularjs/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基于用户输入切换样式

本文发布于:2023-11-06 14:37:59,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1563965.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:样式   用户   AngularJS

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!