Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个页面上有粘性通知,这些只有在点击时才有效,有没有办法在页面加载时显示这些?
<a href="javascript:;" class="btn " id="gritter-regular">Regular</a>
尝试在之后添加
<script type="text/javascript" src="js/jquery.gritter.js"></script> <script> $(document).ready(function() { $.gritter.add({ title: 'Sticky notice', text: 'will not disappear until closed', sticky: true }); }); </script>
文档准备好并设置为不自行关闭后打开通知