JS常用工具函式 中文按拼音排序

2021-08-21 06:46:08 字數 1220 閱讀 5453

漢字轉拼音

/*

---description: pinyin, to get chinese pinyin from chinese.

provides: [pinyin]

...*/

//(function( window, undefined ),

options = ;

pinyin.fn = pinyin.prototype = ,

initialize: function(ops) ;

this.polyphone = ;

},// 提取拼音, 返回首字母大寫形式

getfullchars: function(str) else }}

return result;

},// 提取首字母,返回大寫形式

getcamelchars: function(str)

//處理arrresult,返回所有可能的拼音首字母串陣列

return this._getresult(chars);

},// 提取拼音

_getfullchar: function(str)

}return false;

},// 首字母大寫

_capitalize: function(str)

},_getchar: function(ch) ,

_getresult: function(chars)

} else

//把複製並修改後的陣列連線到arrrslt上

result = result.concat(swap2);}}

}return result;}};

var extend = function(dst, src)

return dst;

};return new pinyin(arguments);

})();

遍歷比較

function compare(val1,val2) else 

return differ;

}} if(i == length)

}

demo

var arr = ['張','長','王','趙'];

arr.sort(compare);

js常用工具函式總結

目錄 1 序列化時間 獲取當前序列化後的時間 dateformat 2 獲取當前日期前或指定時間,前一定範圍的時間 getassigntime 3 判斷是否是1366解析度 is1366screen 4 獲取echarts中x軸資料 getxlist 5 函式防抖 debounce 6 函式節流 t...

js 常用工具方法

1 cookie 操作 setcookie about 設定cookie 預設乙個月失效 function setcookie name,value getcookie about 獲取cookie function getcookie name else delcookie about 刪除coo...

js常用工具方法

slice substring substr 都有擷取字串的作用 1.substring substring 方法返回乙個索引和另乙個索引之間的字串 注意 方法返回乙個索引和另乙個索引之間的字串,語法如下 str.substring indexstart,indexend 下面有六點需要注意 sub...