摘要: 1 var sth = ""; //Global Scope2 var foo = function(){ var sth = ""; // Local Scope}3 var foo = function(){ sth = ""; // Global Scope, this isdefinit... 阅读全文
posted @ 2014-05-04 13:10 VoctrALs 阅读(205) 评论(0) 推荐(0) 编辑
摘要: ArraysArrays are zero-indexed, ordered lists of values. They are a handy way to store a set of related items of the same type (such as strings), thoug... 阅读全文
posted @ 2014-05-04 12:27 VoctrALs 阅读(174) 评论(0) 推荐(0) 编辑
摘要: A Brief LookDOM Traversal and ManipulationGet theelement with the class 'continue' and change its HTML to 'Next Step...'1$( "button.continue" ).html( ... 阅读全文
posted @ 2014-05-04 11:10 VoctrALs 阅读(153) 评论(0) 推荐(0) 编辑