HTML 中文教程1:http://www.w3school.com.cn/html/index.asp
HTML 中文教程2:http://www.w3schools.com/cn/html/default.asp
HTML Tutorial:http://www.w3schools.com/html/default.asp
JavaScript 中文教程:http://www.w3school.com.cn/js/index.asp
JavaScript Tutorial:http://www.w3schools.com/js/default.asp
HTML DOM 中文教程:http://www.w3school.com.cn/htmldom/index.asp
HTML DOM Tutorial:http://www.w3schools.com/htmldom/default.asp
CSS 中文教程:http://www.w3school.com.cn/css/
CSS Tutorial:http://www.w3schools.com/css/
HTML 样式 中文教程1:http://www.w3school.com.cn/html/html_css.asp
HTML 样式 中文教程2:http://www.w3schools.com/cn/html/html_styles.asp
HTML Styles - CSS:http://www.w3schools.com/html/html_css.asp
jQuery 中文教程:http://www.w3school.com.cn/jquery/index.asp
jQuery Tutorial:http://www.w3schools.com/jquery/default.asp
---------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------
H1 ………… HTML DOM Document 对象
H2 ………… 实现:在窗体中显示渐变颜色
H3 ………… 实现:获取地图是否处于编辑状态
H4 ………… 实现:获取地图是否处于编辑状态
H5 ………… 实现:获取地图是否处于编辑状态
---------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------
S1 ………… If...Else
S2 ………… Switch
S3 ………… For 循环
For...In
While 循环
S4 ………… Break & Continue
S5 ………… Array 对象
S6 ………… Date 对象
S7 ………… Math 对象
S8 ………… Number 对象
S9 ………… String 对象
Sa ………… Array 对象
Sb ………… Array 对象
Sc ………… Array 对象
Sd ………… Array 对象
Se ………… Array 对象
---------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------
D1 ………… Document 对象
D2 ………… Event 对象
D3 ………… Window 对象
D4 ………… HTML DOM Document 对象
D5 ………… HTML DOM Document 对象
---------------------------------------------------------------------------------------------------------
上面的实现代码:
<html> <head> <style type="text/css"> h1{text-shadow:2px 2px 0 #bbb;} </style> </head> <body> <h1>CSS3的文字阴影——text-shadow</h1> </body> </html>
---------------------------------------------------------------------------------------------------------
╔════════╗
╠════╣ 第D1个 ╠══════════════════════════════════════════════════╣
╚════════╝
1. 每个载入浏览器的 HTML 文档都会成为 Document 对象。Document 对象使我们可以从脚本中对 HTML 页面中的所有元素进行访问。
2. Document 对象 集合:
3. Document 对象 属性:
4. Document 对象 方法:
---------------------------------------------------------------------------------------------------------
╔════════╗
╠════╣ 第D2个 ╠══════════════════════════════════════════════════╣
╚════════╝
1. 每个载入浏览器的 HTML 文档都会成为 Document 对象。Document 对象使我们可以从脚本中对 HTML 页面中的所有元素进行访问。
2. Event Handlers(事件句柄):
3. 鼠标 / 键盘属性:
4. 标准 Event 属性:
5. 标准 Event 方法:
☞ 用户名、密码举例:
<html> <head> <script> function mover() { event.srcElement.focus(); //鼠标悬浮的时候,聚焦 event.srcElement.select(); //同时选中文字 } function mclick() { if (event.srcElement.value == "[请输入用户名]") event.srcElement.value = ""; //鼠标点击,文本消失 } function mblur() { if (event.srcElement.value == "") event.srcElement.value = "[请输入用户名]"; //鼠标远离,文本显示 } </script> </head> <body> 用户名:<br /> <input id="UserName" onmouseover="mover();" onclick="mclick();" onblur="mblur();" value="[请输入用户名]" /><br /> 密码:<br /> <input id="UserPass" type="password" onmouseover="mover();" value="默认密码" /><br /> 确认密码:<br /> <input id="UserPass" type="password" onmouseover="mover();" value="默认密码" /><br /> </body> </html>
☞ 在 Firefox 上的效果显示不出,转到 IE 比较好!
用户名:
密码:
确认密码: