2013年12月25日 星期三
2013年11月11日 星期一
Homework 11-5-2013
只有清空
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<script type="text/javascript">
var re = /(?:\d{3}|\(\d{3}\))([-\/\.])\d{3}\1\d{4}/;
function testInfo(phoneInput){
var OK = re.exec(phoneInput.value);
if (!OK)
{
window.alert(RegExp.input + " isn't a phone number with area code!");
q.value="";
}
else
window.alert("Thanks, your phone number is " + OK[0]);
}
</script>
</head>
<body>
<p>Enter your phone number (with area code) and then click "Check".
<br>The expected format is like ###-###-####.</p>
<form action="#">
<input id="phone" name="q"><button onclick="testInfo(document.getElementById('phone'));">Check</button>
</form>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<script type="text/javascript">
var re = /(?:\d{3}|\(\d{3}\))([-\/\.])\d{3}\1\d{4}/;
function testInfo(phoneInput){
var OK = re.exec(phoneInput.value);
if (!OK)
{
window.alert(RegExp.input + " isn't a phone number with area code!");
q.value="";
}
else
window.alert("Thanks, your phone number is " + OK[0]);
}
</script>
</head>
<body>
<p>Enter your phone number (with area code) and then click "Check".
<br>The expected format is like ###-###-####.</p>
<form action="#">
<input id="phone" name="q"><button onclick="testInfo(document.getElementById('phone'));">Check</button>
</form>
</body>
</html>
2013年11月3日 星期日
2013年10月27日 星期日
Homework 10-21-2013
<html>
<html>
<head>
</head>
<body id="body">
<form action="javascript:void(0);" id="exampleForm">
<input type="text" id="examplePass"/>
<input type="submit" />
</form>
</body>
<script>
document.getElementById("exampleForm").onsubmit = function(){
var passwordRegex =/^-?\d*$/;
if(!passwordRegex.test(document.getElementById("examplePass").value)){
console.log("Regex didn't match");
var notify = document.getElementById("notify");
if(notify === null){
notify = document.createElement("p");
notify.textContent = "error";
notify.id ="notify";
var body =document.getElementById("body");
body.appendChild(notify);
}
}
};
</script>
</html>
2013年10月20日 星期日
2013年10月14日 星期一
2013年10月6日 星期日
Homework 9-30-2013
1.在過去有許多不同的電腦有不同的格式,不能相容,資訊不能傳遞,發明了網際網路,讓資訊可以互通,後來透過超連結,讓人可以輕易的在尋找資訊的時候,透過相關的連結,尋找更多有關聯的資料,人們應該要有Raw Data Now的概念,原始資料是很重要的,避免被隱藏了甚麼資訊,網站應該要可以分享資料給另一個網站,如果每個人都在一個網站上提供一些資料,久而久之,這個網站便可以提供資料給每一個可能需要的人,例如演講者在地圖上標示地名一般.
2.在龐大的資料量下,提供簡易快速的方法以搜尋網際網路上的資訊
3.Mark Zuckerberg缺乏與人交往的能力,所以他設計了facebook希望能認識女孩子
4.一套共同的系統,讓電腦與電腦之間可以互相聯結
5.很多學校的很多文章都不在上面
2.在龐大的資料量下,提供簡易快速的方法以搜尋網際網路上的資訊
3.Mark Zuckerberg缺乏與人交往的能力,所以他設計了facebook希望能認識女孩子
4.一套共同的系統,讓電腦與電腦之間可以互相聯結
5.很多學校的很多文章都不在上面
2013年9月29日 星期日
Homework 9-23-2013
1.HTML
2.plain text、HTML、images、videos、music
3.c d b a
4.None of the above
5.HTML is <b> reasonably straight forward </b> .
2.plain text、HTML、images、videos、music
3.c d b a
4.None of the above
5.HTML is <b> reasonably straight forward </b> .
訂閱:
文章 (Atom)