Last active
November 1, 2019 07:44
-
-
Save itochan/7ed5b52dba443bee75c1728921d9d5aa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table { | |
border-collapse: collapse; | |
} | |
th, td { | |
width: 40px; | |
height: 30px; | |
border: 1px solid black; | |
text-align: center; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>第4回課題</title> | |
<script src="calendar.js"></script> | |
<link href="calendar.css" rel="stylesheet"> | |
</head> | |
<body> | |
<h1>2019年11月のカレンダー</h1> | |
<p> | |
<input type="button" value="カレンダーを表示する" onclick="showCalendar();"> | |
</p> | |
<table> | |
<tbody id="calendar"></tbody> | |
</table> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function showCalendar() { | |
var calendar = document.getElementById("calendar"); | |
calendar.innerHTML = "<tr><th>Sun</th><th>Mon</th><th>Tue</th><th>Wed</th><th>Thu</th><th>Fri</th><th>Sat</th></tr>"; | |
var tableHtml = ""; | |
var day = 1; | |
var dayOffset = 5; | |
var calendarCell = 42 | |
for (var i = 0; i < calendarCell; i++) { | |
if (i % 7 == 0) { | |
tableHtml += "<tr>"; | |
} | |
if (i < dayOffset || day > 30) { | |
tableHtml += "<td></td>"; | |
} else { | |
tableHtml += "<td>" + day + "</td>"; | |
day++; | |
} | |
if (i % 7 == 6) { | |
tableHtml += "</tr>"; | |
} | |
} | |
calendar.innerHTML += tableHtml; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment