2014年5月26日 星期一
2014年5月25日 星期日
2014年5月19日 星期一
Lab 30 視障者使用網頁的需求
1.提供能取代圖片的文字: http://s10026324.blogspot.tw/2014/04/lab18-change-pictures.html
HTML程式片段:alt="This is a picture, it will change itself when you point it by your mouse."
2.不要開出新視窗: https://www.google.com.tw
HTML程式片段: 不用 <a href="https://www.blogger.com/null" target="_blank">
3.在鏈結上加入標題
4.指定妳的語言
5.跳過導覽列的鏈結
HTML程式片段:alt="This is a picture, it will change itself when you point it by your mouse."
2.不要開出新視窗: https://www.google.com.tw
HTML程式片段: 不用 <a href="https://www.blogger.com/null" target="_blank">
3.在鏈結上加入標題
2014年5月12日 星期一
Lab 27 More on HTML
Firstname | Lastname | Points |
---|---|---|
Huan-Rui | Chang | 93 |
Zhong-You | Huang | 85 |
A Definition List:
- CEO
- - Chief Executive Officer
- B.S. degree
- - bachelor degree
- CYCU
- - Chung Yuan Christian University
Lab 28 Design your business card
Chung Yuan Christian University
Department of electronic engineering
Huan-Rui Chang
2014年5月5日 星期一
Lab24 Google Maps II
<html>
<title>Lab20 </title>
<body>
<form action="http://maps.google.com/maps" method="GET" name="f" onsubmit="return check()">
Search Position: <input name="q" type="text" />
<input type="submit" value="提交資料" />
</form>
<script>
function check(){
var floatReg =/^\d+(\.\d+)?,[+-]\d+(\.\d+)?$/;
if(!floatReg.test(f.q.value)){
alert("It's not a correct format");
f.q.value="";
document.f.q.focus();
return false;
}
}
</script>
</body>
</html>
<title>Lab20 </title>
<body>
<form action="http://maps.google.com/maps" method="GET" name="f" onsubmit="return check()">
Search Position: <input name="q" type="text" />
<input type="submit" value="提交資料" />
</form>
<script>
function check(){
var floatReg =/^\d+(\.\d+)?,[+-]\d+(\.\d+)?$/;
if(!floatReg.test(f.q.value)){
alert("It's not a correct format");
f.q.value="";
document.f.q.focus();
return false;
}
}
</script>
</body>
</html>
訂閱:
文章 (Atom)