微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

angularjs自定义指令的样式如何设置

翻译自这里写链接内容
http://stackoverflow.com/questions/19577027/how-to-css-style-angular-directive

问题

(下面这是一种不好的指令使用方式”C”)
假设你有一个自定义指令如下,并且有许多需要设置的样式

<div class="mydirect">
  <div class="classA">
    <div class="subclassA">
      <div class="subclassB">
      </div>
    <div class="classB"></div>
</div>

这些样式保存在”mydirectstyle.css”文件中,指令的定义如下

I noticed that despite having the classnames in a css file ("mydirectstyle.css") and it being included in index.html,using my directive:

angular.module("MyApp",[]).
  directive('mydirect',function() {
    return {
      restrict: 'E',replace: true,template: '-All that Html here-'
    };
  });

然而这样做并没有效果,index.html中,该指令并无想要的在模板中定义的样式

**译者注:
The restrict option is typically set to:
‘A’ - only matches attribute name 标签属性
‘E’ - only matches element name 元素标签
‘C’ - only matches class name 样式class,不推荐,容易与css混淆
‘M’ - only matches comment 注释**
解答

用“E”的形势要方便很多,原因如下:1. vs

可读性好; 2.你可以通过标签名很容易的设置css样式

指令还是这么写

.directive('mydirect',function() {
    return {
        restrict: 'EA',replace: true,template: '-All that Html here-'
    };
});

样式设置如下

Example 1:

HTML:

<mydirect></mydirect>
CSS:

mydirect{ /* Styles go here */ }
Example 2:

HTML:

<div mydirect></div>
CSS:

div[mydirect]{ /* Styles go here */ }
Example 3:

HTML:

<div data-mydirect></div>
CSS:

/* Leaving off the 'div' in this example allows the same
   styles to apply to any element with the data-direct attribute,regardless of its tag type */

[data-mydirect]{ /* Styles go here */ }

原文地址:https://www.jb51.cc/angularjs/149810.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐