jQuery第一章課後作業
第3題 列印倒正金字塔
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>列印倒金字塔</title>
<style>
hr{width: 50px;display: inline-block}
#suixin{margin: 0px auto;text-align: center}
</style>
</head>
<body>
<div id="suixin">
<h2>列印倒金字塔</h2>
<script>
for (i=7;i>=2&&i<=7;i--) {
for (j = i; j <=(2*i-1);j++) {
document.write("<hr>");
}
document.write("<br>");
}
document.write("<hr>"+"<br>")
for (i=2;i<=7;i++) {
for (j = i; j <=(2*i-1);j++) {
document.write("<hr>");
}
document.write("<br>");
}
</script>
</div>
</body>
</html>
第4題 驗證郵箱
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>驗證郵箱地址</title>
<script>
function isEmail(email){
if(email==""){
alert("郵箱不能為空");
}else if(email.split("@").length==1||email.split(".").length==1){
alert("郵箱地址必須包含@和.")
}else{
var arr = email.split("@");
alert("郵箱地址正確,郵箱名稱是:"+arr[0]);
}
}
</script>
</head>
<body>
<input type="button" value="郵箱驗證" onclick="isEmail(prompt('請輸入正確的郵箱地址','suan@sohu.com'))"/>
</body>
</html>
第5題 weekday
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>彈出不同日期</title>
<script>
function isDay(str) {
switch (str){
case "星期一":
alert("新的一週開始了!");
break;
case "星期二":
case "星期三":
case "星期四":
alert("努力工作!");
break;
default:
alert("放鬆休息吧!");
break;
}
}
</script>
</head>
<body>
<input type="button" value="請輸入星期幾?" onclick="isDay(prompt('請輸入今天是星期幾:'))">
</body>
</html>
相關文章
- jQuery第五章課後作業jQuery
- jQuery第七章課後作業jQuery
- jQuery第二章課後作業jQuery
- jQuery第三章課後作業jQuery
- jQuery第四章課後作業jQuery
- jQuery第六章課後作業jQuery
- JAVA課後作業Java
- 21天精通c++ 第一章(緒論)課後作業C++
- 課後作業1:字串加密字串加密
- 軟體工程概論 第一課:課後作業1軟體工程
- PHP基礎教程-22 課後作業05PHP
- PHP基礎教程-27 課後作業06PHP
- PHP基礎教程-28 課後作業07PHP
- PHP基礎教程-21 課後作業04PHP
- PHP基礎教程-12 課後作業02PHP
- PHP基礎教程-13 課後作業03PHP
- PHP基礎教程-06 課後作業01PHP
- 課後作業——30道四則運算
- 第一章-JAVA基礎-課後總結和課後習題Java
- 開課作業
- 作業系統第一章作業系統
- 第一章 作業系統概述作業系統
- 編譯原理第一章作業編譯原理
- 9.23課堂作業
- 作業系統複習第一章作業系統
- 第一章-----作業系統導論作業系統
- 課堂作業--黑客語解密黑客解密
- linux 實驗課作業Linux
- HTML+CSS編寫靜態網站-45 課後作業09HTMLCSS網站
- HTML+CSS編寫靜態網站-35 課後作業07HTMLCSS網站
- HTML+CSS編寫靜態網站-40 課後作業08HTMLCSS網站
- 第一章、作業系統(OS)引論作業系統
- 第一章 作業系統整體概述作業系統
- 課程排課系統:智慧排課+線上約課+直播上課+作業打卡!
- 軟體工程課程小作業軟體工程
- 作業系統-第一章-系統簡介作業系統
- 第一章 作業系統引論 總結作業系統
- HTML5和CSS3開發第七章課後作業HTMLCSSS3