2009-02-04 186 views

回答

6

MDC索賠,你可以做到這一點:

function styleHyphenFormat(propertyName) 
{ 
    function upperToHyphenLower(match) 
    { 
    return '-' + match.toLowerCase(); 
    } 
    return propertyName.replace(/[A-Z]/, upperToHyphenLower); 
} 

或者更一般地:

myString.replace(/mypattern/g, function(match){ 
    return "Some function of match"; 
}); 
+0

MDC是我的第一個選擇,但是當我試圖看到時,它已經停止。我發現的其他網站只有簡單的替換例子。 – Slartibartfast 2009-02-04 18:36:29