如果不要求支援ie, 那麼只要一行。
dom.style.csstext = window.getcomputedstyle(srcdom, null).csstext;
如果要相容各個瀏覽器,那麼要原始一點:
/**
* ie8不支援window.getcomputedstyle
* ie9~11中,window.getcomputedstyle().csstext返回的總為空字串
* 預設的window.getcomputedstyle || dom.currentstyle, 返回的css鍵值對中,鍵是駝峰命名的。
*/var ostyle = (window.getcomputedstyle && window.getcomputedstyle(srcdom, null)) || srcdom.currentstyle,
csstext = '';
for (var key in ostyle)
}
oracle將乙個使用者下的所有表複製到以乙個使用者下
在測試過程中,一般為了讓測試環境與開發環境隔離,一般要球測試環境對應的資料庫也與開發環境進行隔離 這時候我的做法是 先建立乙個用於測試環境的使用者,然後將開發環境中該使用者對應的表及資料匯出,再匯入到測試使用者下 具體實現步驟 方式一 建立測試使用者,並賦許可權 看需要是否需要建立表空間 然後可直接...
C 把乙個資料夾下所有檔案複製到另乙個資料夾下
c 把乙個資料夾下所有檔案複製到另乙個資料夾下 public static void copydirectory string srcpath,string destpath copydir i.fullname,destpath i.name 遞迴呼叫複製子資料夾 else catch excep...
C 把乙個資料夾下所有檔案複製到另乙個資料夾下
c 把乙個資料夾下所有檔案複製到另乙個資料夾下 public static void copydirectory string srcpath,string destpath copydir i.fullname,destpath i.name 遞迴呼叫複製子資料夾 else catch excep...