jquery当中trim是怎么用的



例 2.1(trimSystemApi.html)
马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。
<html>
<head>
<title>$.trim()</title>
<script language="javascript" src="jquery.min.js"></script>
<script language="javascript">
/*jQuery.trim(str)
去掉字符串起始和结尾的空格。
*/
var sString = "  12345 ";
/* if the following $ is changed to jQuery, the result is the same. */
sString = $.trim(sString);
//sString = jQuery.trim(sString);
alert(sString.length);
</script>
</head>
<body>
</body>
</html>