1. 如果你想考慮就讀本系,這個網站吸引你嗎?
吸引,資訊很豐富
2. 如果你要找指導教授,這個網站給你足夠資訊嗎?
足夠,介紹很詳細
3. 如果你想為子女選擇志願,這個網站給你足夠的畢業校友社會地位與成就資訊嗎?
足夠,很多資訊
4. 如果你是系友,想瞭解系上最新的成就與現況,這個網站有提供你要的資訊嗎?
有
回饋清單功能
Loading...
2014年6月16日 星期一
2014年6月9日 星期一
LAB12
<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+[.]?\d*[,][+-]?\d+[.]?\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);
}
}
};
<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+[.]?\d*[,][+-]?\d+[.]?\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);
}
}
};
2014年5月26日 星期一
lab33
Results of Group A
Brazil versus Scotland
Played on 10-Jun-1998
Result: Brazil2 , Scotland1
Morocco versus Norway
Played on 10-Jun-1998
Result: Morocco2 , Norway2
Scotland versus Norway
Played on 16-Jun-1998
Result: Scotland1 , Norway1
Brazil versus Morocco
Played on 16-Jun-1998
Result: Brazil3 , Morocco0
Brazil versus Norway
Played on 23-Jun-1998
Result: Brazil1 , Norway2
Scotland versus Morocco
Played on 23-Jun-1998
Result: Scotland0 , Morocco3
2014年5月12日 星期一
2014年5月5日 星期一
2014年4月14日 星期一
lab 15
<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 = "Passwords need to >= 6 characters long and a 小寫英文與非字母 排序第一個為字母第二個為非字母."
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 = "Passwords need to >= 6 characters long and a 小寫英文與非字母 排序第一個為字母第二個為非字母."
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() {
//R
var passwordRegex = /^[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 = "Passwords need to be between 6 and 8 characters long and consist of uppercase characters,lowercase characters, 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() {
//R
var passwordRegex = /^[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 = "Passwords need to be between 6 and 8 characters long and consist of uppercase characters,lowercase characters, and digits only."
notify.id = "notify";
var body = document.getElementById("body");
body.appendChild(notify);
}
}
};
</script>
</html>
2014年3月3日 星期一
Lab 6:Using Chrome
CYCU:
1.runinfo.jsp
2.im13.jpg
3.newsbox.jsp
Youtube:
1.www.youtube.com
2.http://pagead2.googlesyndication.com/activeview?id=lidar2&v=104&adk=1&p=100…1280,1024&tt=1105&pt=1&deb=1-1-1-3-4-6&url=http%3A%2F%2Fwww.youtube.com%2F
3.http://csi.gstatic.com/csi?v=2&s=youtube&action=gli&pt=239&yt_spf=0&yt_li=1&e=935501,910207,923302,914062,916612,940316,937417,937416,913434,936910,936913,902907,3300062,3300101,3300130,3300137,3300161,3310366,3310628,3310649&yt_lt=cold&ei=lH4UU_bNEKrnmAWnnYHYDg&srt=169&rt=ce.172,cl.174,bf.1926,hr.2321,je.2599,jl.2604,ol.2695,aft.2695,fpt.2313&it=st.1622,req_.65,rcv_.1863
Lab 4:破解網路大學排名DIY
中原cycu (1,340,000+79,500) = 289900
元智yzu (1,030,000+61,000) = 218200
中正ccu (1,430,000+91,500) = 304300
(台大)ntu (31,500,000+528,000) = 6405600 link
cycu 5,033 = 2516.5
yzu 4208 = 2104
ccu 9858 = 4929
ntu 32664 = 16332
cycu filetype:pdf 16,200 = 2430 yzu
filetype:pdf 14,000 =2800 ccu filetype:pdf 29,500 =5900
ntu filetype:pdf 427,000 =85400
Google Scholar cycu 11400 =1710 yzu 2210 =331.5 ccu 9530 =1429.5 ntu 266000 =39900 summary cycu 279900+2516.5+2430+1710 =286556.5 yzu 278200+2104+2800+331.5 =283435.5 ccu 304300+4929+5900+1429.5 =316558.5 ntu 6405600+85400+39900+16332=6547232 so ntu>ccu>cycu>yzu
2014年2月24日 星期一
訂閱:
文章 (Atom)