C'est La Vie

    人生无彩排,每一天都是现场直播!

    在AJAX页面显示Loading…

    直接贴代码: #ajaxloading { right:0; top:0; width:130px; posi […]

    直接贴代码:

    #ajaxloading {
    	right:0; 
    	top:0; 
    	width:130px; 
    	position:fixed; 
    	padding:10px; 
    	text-align:center; 
    	font-weight:bold; 
    	background:#900; 
    	color:#FFF;
    } 
    * html #ajaxloading {
    	position:absolute; 
    	right:16px;
    }
    /*only for ie*/ 
    html {
    	overflow:auto !important; 
    	overflow:hidden;
    }
    
    正在加载,请稍候 ...
    $(function() { $('#ajaxloading').ajaxStart(function() { $(this).show(); }); $('#ajaxloading').ajaxStop(function() { $(this).hide(); }); });

    发表回复

    您的电子邮箱地址不会被公开。 必填项已用*标注