JS中文排序(Ext中文排序补丁) 1.浏览器中文比较? if(typeof(v1)=="string"&&/.*[\u4e00-\u9fa5]+.*$/.test(v1)){//若为中文字符串,则用localeCompare比较汉字字符串,Firefox与IE均支持 returnv1.localeCompare(v2); } ?2.Ext的中文排序补丁? /*! *中文排序补...