Jquery Loader在Chrome上运行而不在FireFox上运行?

时间:2018-04-24 18:54:55

标签: javascript jquery html css

我有一个加载微调器的代码,它适用于Chrome Android,但我无法弄清楚为什么它不适用于Android上的Firefox。 请协助。



$(document).ready(function() {
  $('#loader').hide();

  $('form').submit(function(event) {
    $('#loader').show();
  });

  $('a.withloader').click(function(event) {
    $('#loader').show();
  });

})

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<body>

  <div id="loader" style="position: fixed; top:0; left:0; width:100%; height: 100%; display: none; background: url('http://sampsonresume.com/labs/pIkfp.gif') center center #efefefe0; background-repeat: no-repeat; z-index:9999;"></div>

  <h1>
    Loader

  </h1>

  <form action="" method="post">
    <button type="submit">
        Submit
      </button>
  </form>

  <a href="#" class="withloader">Submit</a>
</body>
&#13;
&#13;
&#13;

0 个答案:

没有答案