% 是取余運算符。
專注于為中小企業(yè)提供成都網(wǎng)站制作、做網(wǎng)站服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)大城免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了上1000家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
一個表達(dá)式的值除以另一個表達(dá)式的值,返回余數(shù)。
result = number1 % number2
參數(shù)說明:
result 整數(shù)。
number1 整數(shù)。
number2 整數(shù)。
計算說明:
取余%(或余數(shù))運算符用 number1 除以 number2 (必須為整數(shù)),然后只返回余數(shù)作為 result。
所以n%m是指用n除以m,返回整除后的余數(shù)。
$(a).click(function(){
if($(this).is(":hidden")){//如果隱藏就顯示
$(this).show();
}else{
$(this).hide();
}
});
或者可以查考jquery幫助文檔使用.toggle()
概述
切換元素的可見狀態(tài)。
如果元素是可見的,切換為隱藏的;如果元素是隱藏的,切換為可見的。
示例
描述:
切換所有段落的可見狀態(tài)。
HTML 代碼:
pHello/pp style="display: none"Hello Again/p
jQuery 代碼:
$("p").toggle()
結(jié)果:
p tyle="display: none"Hello/pp style="display: block"Hello Again/p
這個是我用過的倒計時插件?希望能幫到你???!!DOCTYPE?html?PUBLIC?"-//W3C//DTD?XHTML?1.0?Transitional//EN"?""
html?xmlns=""
head
meta?http-equiv="Content-Type"?content="text/html;?charset=utf-8"?/
title倒計時測試/title
script?src=""?type="text/javascript"/script
script
function?lxfEndtime(){
$(".lxftime").each(function(){
var?lxfday=$(this).attr("lxfday");//用來判斷是否顯示天數(shù)的變量
var?endtime?=?new?Date($(this).attr("endtime")).getTime();//取結(jié)束日期(毫秒值)
var?nowtime?=?new?Date().getTime();????????//今天的日期(毫秒值)
var?youtime?=?endtime-nowtime;//還有多久(毫秒值)
var?seconds?=?youtime/1000;
var?minutes?=?Math.floor(seconds/60);
var?hours?=?Math.floor(minutes/60);
var?days?=?Math.floor(hours/24);
var?CDay=?days?;
var?CHour=?hours?%?24;
var?CMinute=?minutes?%?60;
var?CSecond=?Math.floor(seconds%60);//"%"是取余運算,可以理解為60進(jìn)一后取余數(shù),然后只要余數(shù)。
if(endtime=nowtime){
$(this).html("已過期")//如果結(jié)束日期小于當(dāng)前日期就提示過期啦
}else{
if($(this).attr("lxfday")=="no"){
$(this).html("i剩余時間:/ispan"+CHour+"/span時span"+CMinute+"/span分span"+CSecond+"/span秒");??????????//輸出沒有天數(shù)的數(shù)據(jù)
}else{
$(this).html("i剩余時間:/ispan"+days+"/spanem天/emspan"+CHour+"/spanem時/emspan"+CMinute+"/spanem分/emspan"+CSecond+"/spanem秒/em");??????????//輸出有天數(shù)的數(shù)據(jù)
}
}
});
setTimeout("lxfEndtime()",1000);
};
$(function(){
lxfEndtime();
});
/script
style?type="text/css"
!--
*{
font-style:?normal;
font-weight:?normal;}
.haveday?{
padding:?20px;
border:?1px?dashed?#000;
margin-right:?auto;
margin-left:?auto;
width:?300px;
}
--
/style
/head
body
div?class="haveday"
h1含有天數(shù)的倒計時/h1
div?class="lxftime"?endtime="11/15/2011?17:24:0"/div
div?class="lxftime"?endtime="11/8/2011?3:3:20"/div
div?class="lxftime"?endtime="9/6/2015?6:1:0"/div
div?class="lxftime"?endtime="6/6/2016?9:3:5"/div
/div
p/p
div?class="haveday"
h1沒有天數(shù)的倒計時/h1
div?class="lxftime"?endtime="11/15/2011?17:24:0"?lxfday="no"/div
div?class="lxftime"?endtime="11/8/2011?3:3:20"?lxfday="no"/div
div?class="lxftime"?endtime="9/6/2015?6:1:0"?lxfday="no"/div
div?class="lxftime"?endtime="6/6/2016?9:3:5"?lxfday="no"/div
/div
/body
/html
/*
***簡單的寫了下,如果對你有用,記得點贊
*/
!DOCTYPE HTML
html
head
meta charset="utf-8" /
script src=""/script
/head
body
p id="show_time"/p
p我是替換前的p/p
/body
script
$(function() {
lxfEndtime();
})
var myDate = new Date();
//var D = myDate.getDate(); //獲取當(dāng)前日(1-31)
var starttimes = new Date();
starttimes.setFullYear(2016,8,20)
starttimes.setHours(10)
starttimes.setMinutes(18)
starttimes.setSeconds(0)
/*var endtimes = new Date();
endtimes.setFullYear(2016,8,22)
endtimes.setHours(0)
endtimes.setMinutes(0)
endtimes.setSeconds(0)
*/
var starttime =starttimes.getTime();
//var endtime =endtimes.getTime();
var nowtime = new Date().getTime();
function lxfEndtime(){
var time = $('#show_time');
var youtime = starttime -nowtime;//還有多久(毫秒值)
var seconds = youtime/1000;
var minutes = Math.floor(seconds/60);
var hours = Math.floor(minutes/60);
var days = Math.floor(hours/24);
var CDay= days;
var CHour= hours % 24;
var CMinute= minutes % 60;
var CSecond= Math.floor(seconds%60);//"%"是取余運算,可以理解為60進(jìn)一后取余數(shù),然后只要余數(shù)。
var t;
if(starttime =nowtime){
clearTimeout(t);
$('body').html('p我是替換后的p/p');
}else{
if(CMinute 10){CMinute = "0"+CMinute;}
if(CSecond 10){CSecond = "0"+CSecond;}
time.html("距離切換body還剩:span"+days+"/span 天 span"+CHour+"/span 時 span"+CMinute+"/span 分 span"+CSecond+"/span 秒");
nowtime = nowtime+1000;
t = setTimeout("lxfEndtime()",1000);
};
}
/script
/html