js字符串(把一個字符串轉化爲駝峯寫法 去掉字符串中的空格字符串首字母改大寫去字符串頭尾空格刪除字符串中全部的數字反轉字符串)

把一個字符串轉化爲駝峯寫法(例如:margin-left=>marginLeft)web function demo1(str){ var index=str.indexOf(’-’);//獲取-的位置 // console.log(index); str=str.replace(’-’,’’); // console.log(str); var c=str.charAt(index).toUpp
相關文章
相關標籤/搜索