2012-10-12 74 views

回答

1
​​
+0

MH。看起來很簡單:-) – frequent

+0

@頻繁嘗試;) –

+0

好的。終於開始這樣做了。表應該是什麼? – frequent

1

使用feature detection代替:

var abstractedInsertOfRule = function (rule, stylesheet){ 
    //if (object) is a quick way to test if the object is defined 
    //in browsers that do not implement "insertRule", 
    //if (insertRule) returns "falsy" 
    if (insertRule) { 
     insertRule(rule, stylesheet); 
    } else if (addRule) { 
     addRule(rule, stylesheet); 
    } else { 
     //call other rule insertion methods here 
    } 
}; 
+0

謝謝。添加了一個括號。 – frequent

+0

對不起。不能讓它工作。另一個答案爲我做了。 – frequent

相關問題