我正在使用griter.js来通知成功或错误消息。它工作,但“X”关闭图标仍然隐藏。我签入了元素的CSS规则,它们都很好,但是没有任何效果。

<script src="/components/jquery.gritter/js/jquery.gritter.js"></script>
<link rel="stylesheet" href="/components/jquery.gritter/css/jquery.gritter.css" />

  /*some other code*/
  switch (window.location.hash) {
    case "#success":
    $.gritter.add({
      title: 'Molto bene!',
      text: "L'operazione è stata eseguita con successo!",
      sticky: true,
      class_name: 'gritter-success gritter-light'
    });
    break;
    case "#error":
    $.gritter.add({
      title: 'Oops!',
      text: "Qualcosa è andato storto. L'operazione non è stata eseguita!",
      class_name: 'gritter-error gritter-light'
    });
    break;
  }

js生成一个图标,如:
<a style="display: none;" class="gritter-close" href="#" tabindex="1">Close Notification</a>
css规则是:
.gritter-light .gritter-close {
    background-image: none;
    color: #444;}

//applied onhover
elemento {
    display: block;}

最佳答案

可能有点晚了,但可能是因为你也在使用ace模板。
我最近也有同样的问题。原来ace模板有一个css规则,将griter close图标的字体大小设置为零。简单地重写css规则就解决了这个问题。

07-24 16:47