文章列表
官方example:
http://examples.adobe.com/flex3/componentexplorer/explorer.html
例子网站:
http://blog.minidx.com/
资源信息:
http://www.airia.cn/
http://bbs.airia.cn/Share/thread-85-1-1.aspx
http://bbs.airia.cn/FLEX/thread-3462-1-1.aspx
1.document.write(""); 输出语句
2.JS中的注释为//
3.传统的HTML文档顺序是:document->html->(head,body)
4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,location,document)
5.得到表单中元素的名称和值:document.getElementById("表单中元素的ID号").name(或value)
6.一个小写转大写的JS: document.getElementById("output&quo ...