JavaScript语言作业试题
发布网友
发布时间:2022-04-22 02:03
我来回答
共1个回答
热心网友
时间:2022-04-25 11:32
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<script type="text/javascript">
window.onload = function () {
alert('欢迎进入本网页');
}
window.onbeforeunload = function (e) {
alert('谢谢浏览');
}
function isLeapYear() {
var year = 2009;
if (year % 4 == 0) {
printInfo('2009年是闰年');
} else {
printInfo('2009年不是闰年');
}
}
function ljs() {
var i = 0;
while (i < 10) {
printInfo('学习JavaScript很容易!');
i++;
}
}
function printInfo(msg) {
document.getElementById('out').innerHTML += msg + '<br/>';
}
function currentDateTime() {
var d = new Date();
printInfo('当前日期时间:' + d.getFullYear() + '年' + (d.getMonth() + 1) + '月' + d.getDate() + '日 ' + d.getHours() + '时' + d.getMinutes() + '分' + d.getSeconds() + '秒');
}
function changeBackground() {
document.body.style.background = '#FF0000';
}
</script>
</head>
<body>
<input type="button" value="我喜欢学Javascript" onclick="alert(this.value)" />
<input type="button" value="2009是不是闰年" onclick="isLeapYear()" />
<input type="button" value="学习JavaScript很容易!" onclick="ljs()" />
<input type="button" value="当前日期和时间" onclick="currentDateTime()" />
<input type="button" value="变换背景" onclick="changeBackground()" />
<div id="out">
</div>
</body>
</html>
自己动手,丰衣足食!