我已經實現了Jquery微調,但它在Firefox上工作正常,但不適用於Chrome。 我已經創建了兩個函數調用start微調和stopSpinner 這裏是我的代碼jquery微調不能在Chrome上工作
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>
所以每當我想打電話給我用 startS平納(); 和StopSpinner();
感謝
「它在Chrome上正常工作,但不適用於Chrome」? ;) – gordatron 2013-05-13 09:48:25
剛剛編輯 - 在Firefox上的作品,但不在鉻 – user1030128 2013-05-13 09:48:59