当前位置: 代码迷 >> JavaScript >> js除开两头的空格
  详细解决方案

js除开两头的空格

热度:263   发布时间:2012-09-09 09:27:54.0
js去除两头的空格

<html>
?<head>
<script>
?? function ccc(str){
??????? alert(str.value.length);
??? ??? alert(str.value.replace(/(^\s*)|(\s*$)/g, "").length);
??? ??? return str.value.replace(/(^\s*)|(\s*$)/g, "");
?? }
</script>
?</head>

?<body>
?? <input type="text" value="??? jacklucy?? " onclick="ccc(this);">
?</body>
</html>

?

?

//---------------------------------

?

?

?

function mytrim(str){ //删除左右两端的空格
??? return str.replace(/(^\s*)|(\s*$)/g, "");
}

?

?

?

?

?

?

?

  相关解决方案