admin管理员组文章数量:1344929
I know about the script-tag for adding content that none javascript users can read.
What is the best way to hide html blocks that is created for angularjs?
Example:
<div>
{{this_code_is_converted_to_angular_js_code_when_javascript_is_active}}
</div>
The line above is not that beautiful for a none javascript user. What is the best way to remove it if the user is not using javascript?
I know about the script-tag for adding content that none javascript users can read.
What is the best way to hide html blocks that is created for angularjs?
Example:
<div>
{{this_code_is_converted_to_angular_js_code_when_javascript_is_active}}
</div>
The line above is not that beautiful for a none javascript user. What is the best way to remove it if the user is not using javascript?
Share edited Jun 10, 2014 at 13:47 Jens Törnell asked Jun 10, 2014 at 13:18 Jens TörnellJens Törnell 24.8k46 gold badges130 silver badges223 bronze badges 2-
are you using the
ng-view
directive? If i'm looking at source in developer tools for chrome it doesn't look like you are. You have everything inside the same html file. You should make a SPA application where Angular switches out your views. – furier Commented Jun 10, 2014 at 13:47 - No I'm just dumping it in so far. Maybe a "SPA"-thing would be better. I'm quite new to Angularjs. – Jens Törnell Commented Jun 10, 2014 at 13:51
4 Answers
Reset to default 8Use the <noscript>
tag to display content when JavaScript is not enabled.
Also the main.html
file should not have any {{content}}
tags, instead you should have sub views which are loaded into the <div ng-view=""></div>
This way if JavaScript is not enabled, only content in the noscript
tag will be displayed because the ng-view div
is empty, as AngularJS is JavaScript and will never insert anything into the ng-view div
.
Example HTML
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" ng-app="myApp" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en" ng-app="myApp" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en" ng-app="myApp" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en" ng-app="myApp" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My AngularJS App</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bower_ponents/html5-boilerplate/css/normalize.css">
<link rel="stylesheet" href="bower_ponents/html5-boilerplate/css/main.css">
<link rel="stylesheet" href="css/app.css"/>
<script src="bower_ponents/html5-boilerplate/js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy./">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div ng-view></div>
<noscript>Enable JavaScript to view this web page.</noscript>
<!-- In production use:
<script src="//ajax.googleapis./ajax/libs/angularjs/x.x.x/angular.min.js"></script>
-->
<script src="bower_ponents/angular/angular.js"></script>
<script src="bower_ponents/angular-route/angular-route.js"></script>
<script src="js/app.js"></script>
<script src="js/services.js"></script>
<script src="js/controllers.js"></script>
<script src="js/filters.js"></script>
<script src="js/directives.js"></script>
</body>
</html>
If you just want to hide elements you can use ng-cloak https://docs.angularjs/api/ng/directive/ngCloak
You have a few options...
Since you specifically don't want to display HTML block for NON-Angular (non-javascript), then you should ONLY place that HTML code within either:
use
ngBindTemplate
(preferred):<script> function Ctrl($scope) { $scope.salutation = 'Hello'; $scope.name = 'World'; } </script> <div ng-controller="Ctrl"> Salutation: <input type="text" ng-model="salutation"><br> Name: <input type="text" ng-model="name"><br> <pre ng-bind-template="{{salutation}} {{name}}!"></pre> </div>
or...
ngBind
:<script> function Ctrl($scope) { $scope.name = 'Whirled'; } </script> <div ng-controller="Ctrl"> Enter name: <input type="text" ng-model="name"><br> Hello <span ng-bind="name"></span>! </div>
The main difference being that "...unlike
ngBind
, thengBindTemplate
can contain multiple{{ }}
expressions. This directive is needed since some HTML elements (such asTITLE
andOPTION
) cannot containSPAN
elements.": https://docs.angularjs/api/ng/directive/ngBindTemplateIn your specific example/question:
<div ng-bind="hide-this-when-no-js"> {{this_code_is_converted_to_angular_js_code_when_javascript_is_active}} </div>
I don't know if this is what you are looking for but if you don't want to display {{ }}
marks in your page when javascript is not enabled you should try using ng-bind and/or ng-bind-template instead.
本文标签: htmlAngularjs fallbackhide for none javascript usersStack Overflow
版权声明:本文标题:html - Angularjs fallback, hide for none javascript users - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743771994a2536291.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论