Alipay JSSDK V3.1.1

ap.hideLoading()

隐藏加载提示。

代码示例

<script src="https://gw.alipayobjects.com/as/g/h5-lib/alipayjsapi/3.1.1/alipayjsapi.inc.min.js"></script>

<button id="J_btn" class="btn btn-default">showLoading</button>
<script>
  var btn = document.querySelector('#J_btn');
  btn.addEventListener('click', function(){
    ap.showLoading({
      content: '2秒后消失',
      delay: 1000
    });
    setTimeout(function(){
      ap.hideLoading();
    }, 3000);
  });
</script>

其他说明

  • 显示 loading 后,会覆盖整个h5页面,页面元素不能交互。