The interface is used to hide the loading box of title bar.
Use hideTitleLoading interface
AlipayJSBridge.call('hideTitleLoading');
Code sample
Show/hide global loading box:
<h1>Click the buttons below to check the effect</h1><a href="javascript:void(0)" class="btn show">Display loading</a><a href="javascript:void(0)" class="btn hide">Hide loading</a><script>function ready(callback) {// Call directly if JSBridge has been injectedif (window.AlipayJSBridge) {callback && callback();} else {// Monitor the injected events if JSBridge hasn't been injecteddocument.addEventListener('AlipayJSBridgeReady', callback, false);}}ready(function() {document.querySelector('.show').addEventListener('click', function() {AlipayJSBridge.call('showTitleLoading');});document.querySelector('.hide').addEventListener('click', function() {AlipayJSBridge.call('hideTitleLoading');});});</script>