第一點 : 算是吸引 至少網頁看起來很乾淨俐落 比較沒有什麼花俏的設計 很整潔
第二點 : 已足夠 還有許多分類能更輕易迅速地找到所需要的組別老師的資訊
第三點 : 已足夠 還有畢業系友的資訊供我們參考 多了許多考慮上某些需要的決定訊姓
第四點 : 有 已足夠 有最新消息跟圖片當作跑馬燈 能快速了解最新消息
2014年6月16日 星期一
2014年6月9日 星期一
lab 6
CYCU:
newbox.jsp
runinfo,jsp
dm.thtml
youtube:
watchas3.swf
frame?origin=http%3A%2F%2Fwww.youtube.com&source=yt&hl=zh-TW&jsh=m%3B%2F_%2Fscs%2Fabc-static%2F_%2Fjs%2Fk%3Dgapi.gapi.en.rvf-YtVghxA.O%2Fm%3D__features__%2Frt%3Dj%2Fd%3D1%2Frs%3DAItRSTOXechpRdSB_UZPHFJEdeuWWaYYbQ
plus.google.com/_/notifications
www.youtube.com
www.udacity.com
fonts.css
angular-animate.min.js.map
/media/js/external
?label=g1sKCPi-ywYQgL6YvQM&guid=ON&script=0&ord=4637949285097420&ctc_id=CAIVAgAAAB0CAAAA&ct_cookie_present=false&convclickts=0&random=2029373125
googleads.g.doubleclick.net/pagead/vie
2014年5月26日 星期一
2014年5月19日 星期一
lab 30
定義快速鍵 : https://www.cycu.edu.tw/
指定妳的語言:http://zh.wikipedia.org/wiki/%E8%89%BE%E5%80%AB%C2%B7%E8%89%BE%E4%BD%9B%E6%A3%AE
先呈現妳的主要內容:http://www.nba.com/
不要開出新視窗:https://www.google.com.tw/
在鏈結上加入標題:https://www.apple.com/tw/itunes/features/
2014年5月12日 星期一
2014年5月5日 星期一
2014年4月28日 星期一
2014年4月14日 星期一
lab 15
<html>
<body>
<button onclick="buildTable()">Try it</button>
<script>
function buildTable(){
docBody = document.getElementsByTagName("body").item(0)
myTable = document.createElement("TABLE")
myTable.id ="TableOne"
myTable.border = 1
myTableBody = document.createElement("TBODY")
for (i = 1; i <=9; i++){
row = document.createElement("TR")
for (j = 1; j <=9; j++){
cell = document.createElement("TD")
cell.setAttribute("WIDTH","50")
cell.setAttribute("HEIGHT","50")
textVal = i + "*" + j+"="+i*j
textNode = document.createTextNode(textVal)
cell.appendChild(textNode)
row.appendChild(cell)
}
myTableBody.appendChild(row)
}
myTable.appendChild(myTableBody)
docBody.appendChild(myTable)
}
</script>
</head>
<body>
</body>
</html>
2014年4月7日 星期一
2014年3月17日 星期一
2014年3月10日 星期一
lab8
<html>
<head>
</head>
<body id="body">
<form action="javascript:void(0);" id="exampleForm">
<input type="password" id="examplePass" />
<input type="submit" />
</form>
</body>
<script>
document.getElementById("exampleForm").onsubmit = function() {
//R
var passwordRegex = /^[\D]+[\W_]+[A-Za-z\d]{6,}$/;
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 = "需大於6個位元,至少要有1個英文字母一個非英文字母."
notify.id = "notify";
var body = document.getElementById("body");
body.appendChild(notify);
}
}
};
</script>
</html>
<head>
</head>
<body id="body">
<form action="javascript:void(0);" id="exampleForm">
<input type="password" id="examplePass" />
<input type="submit" />
</form>
</body>
<script>
document.getElementById("exampleForm").onsubmit = function() {
//R
var passwordRegex = /^[\D]+[\W_]+[A-Za-z\d]{6,}$/;
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 = "需大於6個位元,至少要有1個英文字母一個非英文字母."
notify.id = "notify";
var body = document.getElementById("body");
body.appendChild(notify);
}
}
};
</script>
</html>
lab7
html>
<head>
</head>
<body id="body">
<form action="javascript:void(0);" id="exampleForm">
<input type="password" id="examplePass" />
<input type="submit" />
</form>
</body>
<script>
document.getElementById("exampleForm").onsubmit = function(){
var passwordRegex = /^[A-Za-z\d]{6,8}$/;
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 = "Passwords need to be between 6 and 8 charcters long and consist of uppercase characters,lowercase charcters, and digits only"
notify.id="notify";
var body = document.getElementById("body");
body.appendChild(notify);
}
}
};
</script>
</html>
<head>
</head>
<body id="body">
<form action="javascript:void(0);" id="exampleForm">
<input type="password" id="examplePass" />
<input type="submit" />
</form>
</body>
<script>
document.getElementById("exampleForm").onsubmit = function(){
var passwordRegex = /^[A-Za-z\d]{6,8}$/;
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 = "Passwords need to be between 6 and 8 charcters long and consist of uppercase characters,lowercase charcters, and digits only"
notify.id="notify";
var body = document.getElementById("body");
body.appendChild(notify);
}
}
};
</script>
</html>
2014年3月3日 星期一
lab4
中原
(1)網頁規模 1290000
(2)能見度 1109
(3)教學檔案 16400
(4)學術文件 11300
元智
(1)網頁規模 276000
(2)能見度 5
(3)教學檔案 14100
(4)學術文件 2210
台大
(1)網頁規模 817000
(2)能見度 39
(3)教學檔案 429000
(4)學術文件 269000
中正
(1)網頁規模 1420000
(2)能見度 9
(3)教學檔案 24500
(4)學術文件 9630
(1)網頁規模 1290000
(2)能見度 1109
(3)教學檔案 16400
(4)學術文件 11300
元智
(1)網頁規模 276000
(2)能見度 5
(3)教學檔案 14100
(4)學術文件 2210
台大
(1)網頁規模 817000
(2)能見度 39
(3)教學檔案 429000
(4)學術文件 269000
中正
(1)網頁規模 1420000
(2)能見度 9
(3)教學檔案 24500
(4)學術文件 9630
2014年2月25日 星期二
訂閱:
文章 (Atom)