1. 如果你想考慮就讀本系,這個網站吸引你嗎?
吸引我,因為我看了招生專區,有很多Q&A相信可以讓我更了解電子系。
2. 如果你要找指導教授,這個網站給你足夠資訊嗎?
足夠,基本上老師的專長都有標在上面。
3. 如果你想為子女選擇志願,這個網站給你足夠的畢業校友社會地位與成就資訊嗎?
不夠,我從榮譽榜的系友傑出表現,只有八個,相信中原電子系應該有更多傑出校友。
4. 如果你是系友,想瞭解系上最新的成就與現況,這個網站有提供你要的資訊嗎?
有。
2014年6月16日 星期一
2014年5月26日 星期一
2014年5月19日 星期一
2014年5月12日 星期一
2014年5月5日 星期一
Lab 22 共同編輯文件
文件連結 : https://docs.google.com/document/d/1LxPSU6Zers6-vNybbm7o2vQ1akqeEou3OFp975UvJRk/edit
表單連結 : https://docs.google.com/forms/d/1jorbpx49UJzAJhGNlF7Erp_DiovpPLskehD0RXEJbY8/viewform
Lab 20 Hand code a form
CGI (Common Gateway Interface,共同閘道管制介面)不是一種語言,
而是一種象徵性的名稱。
CGI程式可以用Perl、C++或是Visual Basic寫作而成。
CGI處處可見,留言板、聊天室與搜尋 引擎都是CGI程式可以寫成的。
CGI程式主要提供的是一種使用者與伺服器互動的一種管道
2014年4月14日 星期一
Lab 15 九九乘法表
<html>
<body>
<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 < 10; i++){
row = document.createElement("TR")
for (j = 1; j < 10; j++){
cell = document.createElement("TD")
cell.setAttribute("WIDTH","50")
cell.setAttribute("HEIGHT","50")
textVal = i+"x"+j+"="+i*j
textNode = document.createTextNode(textVal)
cell.appendChild(textNode)
row.appendChild(cell)
}
myTableBody.appendChild(row)
}
myTable.appendChild(myTableBody)
docBody.appendChild(myTable)
}
window.onload = buildTable
</script>
</body>
</html>
<body>
<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 < 10; i++){
row = document.createElement("TR")
for (j = 1; j < 10; j++){
cell = document.createElement("TD")
cell.setAttribute("WIDTH","50")
cell.setAttribute("HEIGHT","50")
textVal = i+"x"+j+"="+i*j
textNode = document.createTextNode(textVal)
cell.appendChild(textNode)
row.appendChild(cell)
}
myTableBody.appendChild(row)
}
myTable.appendChild(myTableBody)
docBody.appendChild(myTable)
}
window.onload = buildTable
</script>
</body>
</html>
2014年4月7日 星期一
2014年3月17日 星期一
Lab 12 Regular expression in action
Write a form to send a query to Google maps. If the input is not in the format of coordinates, display an error and ask the user to retry. For example, an incorrect input may look like 12.a2,21.22
訂閱:
文章 (Atom)