Javascript String.localeCompare()方法
作者:--
发布时间:2019-11-20
评论:0
阅读:0
这个方法返回一个数字表示参考字符串是否到来之前或之后或相同的排序顺序给定的字符串。
语法
string.localecompare( param )
下面是参数的详细信息:
返回值:
例子:
<html>
<head>
<title>javascript string localecompare() method</title>
</head>
<body>
<script type="text/javascript">
var str1 = new string( "this is beautiful string" );
var index = str1.localecompare( "xyz" );
document.write("localecompare first :" + index );
document.write("<br />" );
var index = str1.localecompare( "abcd ?" );
document.write("localecompare second :" + index );
</script>
</body>
</html>
这将产生以下结果:
localecompare first :-1
localecompare second :1