簡易萬年曆

2021-10-01 03:59:50 字數 1019 閱讀 8766

div設定

* li

body

.calendar 

.calendar ul

.calendar li

.calendar li h2

.calendar li p

.calendar .active

.calendar .active p

.calendar .text

.calendar .text h2

.calendar .text p

頁面設定

快過年了,大家可以商量著去哪玩吧~

var otab = document.getelementbyid("tab");

var ali = otab.queryselectorall("li");

var oh2 = document.queryselector(".text h2");

var op = document.queryselector(".text p");

// 1.遍歷所有li,準備繫結事件

for(var i=0;i// 注意:此時在事件中,已經拿不到外面的迴圈的計數器了

// 因為迴圈已經執行結束了

// console.log(i)

// console.log(this)

// 4.找到當前元素,新增class

this.classname = "active";

// 6.根據當元素,找到當初自定義的索引,根據索引,找到對應的資料

// console.log(this.getattribute("liyang"))

// console.log(this.liyang)

oh2.innerhtml = this.liyang+1 + "月活動";

op.innerhtml = arr[this.liyang];

}}

C語言簡易萬年曆

include include define yeardays 365 定義一年天數 define yearmons 12 定義一年月數 define weekdays 7 定義一周天數 用列舉資料結構定義乙個星期裡的每一天的稱呼 typedef enumweek 用列舉資料結構定義十二個月 typ...

C 實現簡易萬年曆

如下 檔名稱 萬年曆.cpp 作 者 chenghan 完成日期 2019 1 10 版 本 號 1.0 問題描述 製作乙個簡單的萬年曆 include include using namespace std 判斷一年是否為閏年,是返回true 否返回false bool isleapyear in...

php 簡易萬年曆的製作

判斷年的值是否設定,並且是數值型別 if isset post year is numeric post year else 判斷月的值是否設定,並且是數值型別 if isset post month is numeric post year else 天的初始值 date 01 用來判斷月初1號是...