摘要:
Sometimes we want to add extra data to our form and submit them to the server.We can do this like :1 var form = document.querySelector('form');2 f... 阅读全文
摘要:
Today I got a issue that window.location.origin returns undefined in IE 9 .But we can fix this issue with following code:if (!window.location.origin) ... 阅读全文
摘要:
Chapter 5 Reference TypesNew objects are created by using the new operator follow by a constructor.The Object TypeNumeric property name are automatica... 阅读全文
摘要:
Webkit 内核的浏览器在加载完图片之后才能获取宽和高。所以,我建议使用onload时间来获取图片的宽和高1 var img = $("img")[0]; // Get my img elem2 var pic_real_width, pic_real_height;3 $("") // Make... 阅读全文
摘要:
当你看见function里面又嵌套着一个function,而内嵌的function又访问了外部的变量时,那就是闭包,如下代码:1 function foo(x){var tmp =3;function bar(y){2 alert(x + y +(++tmp));// will alert ... 阅读全文