我已经实现了 Jquery 微调器,但它在 Firefox 上运行良好,但在 Chrome 上不起作用。我创建了两个函数,称为 start spinner 和 stopSpinner 这是我的代码
function startSpinner(){
$(document).ready(function() {
console.log('spinner should be getting shown now');
$('#spinner').show();
});
}
function stopSpinner(){
$(document).ready(function() {
console.log('spinner should be getting shown now');
$('#spinner').hide();
});
}
CSS类
.spinner {
position: fixed;
top: 50%;
left: 50%;
margin-left: -50px; /* half width of the spinner gif */
margin-top: -50px; /* half height of the spinner gif */
text-align:center;
z-index:1234;
overflow: auto;
width: 100px; /* width of the spinner gif */
height: 102px; /*hight of the spinner gif +2px to fix IE8 issue */
}
HTML
<div id="spinner" class="spinner">
<img id="img-spinner" src="images/spinner.gif" alt="Loading" />
</div>
所以每当我想打电话时,我都会说 startSpinner(); 和 StopSpinner();
谢谢