创建DIV弹出警告

时间:2014-08-05 17:54:38

标签: html css popup onload

在此示例中:HTML / CSS Popup div on text click

第一次访问网站时如何在索引页面上加载。我不想要一个按钮点击,我想自动加载;然后在他们阅读弹出窗口中的内容时有一个关闭按钮。提前谢谢。

1 个答案:

答案 0 :(得分:0)

您好,您可以使用bootstrap模式弹出窗口执行此操作 为此包括bootstrap css和js文件,并使用下面的代码

您的Html代码

<div class="modal fade" id="myModal" tabindex="-1" role="dialog"  arialabelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
        <h4 class="modal-title" id="myModalLabel">Intorduction</h4>
      </div>
      <div class="modal-body">
        Body Text
      </div>
      <div class="modal-footer">
        <a  class="btn btn-default"  data-dismiss="modal">Close</a>

      </div>
    </div>
  </div>
</div>

然后使用此脚本

<script>
      if (localStorage.getItem('showModal')!='yes')
        {
        localStorage.setItem('showModal','yes');
        $('#myModal').modal('show');

        }

 </script>