1
我一直在尋找在jQuery的來源,發現駝峯是:jQuery的駝峯實施
camelCase: function(string) {
return string.replace(rmsPrefix, "ms-").replace(rdashAlpha, fcamelCase);
}
// where:
rmsPrefix = /^-ms-/,
rdashAlpha = /-([\da-z])/gi,
fcamelCase = function(all, letter) {
return letter.toUpperCase();
}
我的問題是:爲什麼rdashAlpha
也找數字,有沒有呼籲一個數字一個touppercase點?有沒有可以改變的unicode字符?