例 2.1(trimSystemApi.html)
<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>
更多请见:https://blog.youkuaiyun.com/qq_44594371/article/details/103062778
本文介绍了一个简单的示例,展示了如何使用 jQuery 的 trim() 方法去除字符串两端的空白字符。通过一个具体的 HTML 和 JavaScript 代码片段,演示了 trim() 方法的基本用法。
181

被折叠的 条评论
为什么被折叠?



