我是靠谱客的博主 刻苦天空,最近开发中收集的这篇文章主要介绍在网页加载完毕时自动触发某个按钮的点击事件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在网页加载完毕时自动触发某个按钮的点击事件

需求: 在使用bootstrap 模态框时 需要模态框在网页加载完毕后自动显示模态框而不是通过按钮激活模态框
解决思路:在window.onload() 方法中激活 模态框按钮的click方法即可
实现:
<!-- Button trigger modal -->
<button type="button" id="activate" class="btn btn-primary" data-toggle="modal" data-target="#staticBackdrop" hidden>
  点击展开
</button>

<!-- Modal -->
<div class="modal fade" id="staticBackdrop" data-backdrop="static" data-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="staticBackdropLabel">模态框</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
      </div>
      <div class="modal-body">
        我是模态框模态框
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">取消</button>
        <button type="button" class="btn btn-primary">同意</button>
      </div>
    </div>
  </div>
</div>
 window.onload = function (){
           document.querySelector("#activate").click()
       }

十分简单

最后

以上就是刻苦天空为你收集整理的在网页加载完毕时自动触发某个按钮的点击事件的全部内容,希望文章能够帮你解决在网页加载完毕时自动触发某个按钮的点击事件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部