<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>判斷年齡</title>
</head>html
<body>
<script>
var age= prompt("請輸入年齡");
/*if(age>0){
alert("你的年齡爲"+age);
}
else{
alert("請輸入有效年齡");
}*/
while(age<0){
var age= prompt("請從新輸入年齡");
}
alert("你的年齡爲"+age);
</script>
</body>
</html>ui
運用第一學期的html與js相結合,從而獲得我的信息。
xml