2013年11月2日星期六

Homework 10-28-2013

秋天的杭州:
        

                                              (西子湖畔秋高氣爽)
圖片來源:  http://p.qpic.cn/areabbs/0/myzj_forum_201310_14_085002h1g2g48yy61jyruz.jpg.thumb.jpg/0



                                                             (滿山桂花飄香)
圖片來源:
http://i3.sinaimg.cn/travel/2013/1015/U6239P704DT20131015095646.jpg


              秋天是收穫的季節,家鄉的秋意正濃,在這秋高氣爽的季節,更加適合我們外出享受

大自然的風景。

             你好秋天!






2013年10月28日星期一

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>