- Feb 06 Wed 2013 23:53
Appserv php5.2 升級 到 php 5.3
- Nov 23 Fri 2012 16:52
JQuery 防止live事件綁定到子元素
$("aaa").live("clickr",function(e){
if(e.target == this){
- Nov 08 Thu 2012 18:23
Js array independ clone
var newArray = oldArray.slice();
- Jul 10 Tue 2012 17:40
Array.prototype.slice.call(arguments,1)
- Jul 10 Tue 2012 17:17
javascript call方法
- Jul 04 Wed 2012 15:07
javasvript new 運算子
- Jul 04 Wed 2012 14:14
Css 屬性繼承
其實除了font的相關屬性外,其他屬性都不繼承
- Jul 02 Mon 2012 19:10
.htaccess檔案 與 Apache 設定
----- 設定 Apache 支援 .htaccess 保護功能 -----
當您網站上有某些網頁不想讓人可以隨便瀏覽 (例如:管理介面、程式後台.....),此時可利用 Apache 內的 .htaccess 功能來替網頁進行管制保護
- Jul 02 Mon 2012 15:48
DOM reflow 時機
- When you add or remove a DOM node.
- When you apply a style dynamically (such as element.style.width="10px").
- When you retrieve a measurement that must be calculated, such as accessing offsetWidth, clientHeight, or any computed CSS value (via getComputedStyle() in DOM-compliant browsers or currentStyle in IE).