猿问

input输入框,在输入的时候,文字中间可以有空格,两边的空格去掉

在input输入框输入时,开头和结尾不能有空格,
但是文本中间是可以有空格的。
这种,有什么正则或者其他方法来实现吗?

慕桂英546537
浏览 4320回答 1
1回答

红颜莎娜

var greeting = ' Hello world! ';console.log(greeting);// expected output: " Hello world! ";console.log(greeting.trim());// expected output: "Hello world!";
随时随地看视频慕课网APP

相关分类

Html5
我要回答