I m 试图从投入的开始和结束中删除空白处,而不增加一个类别或id或事件
我尝试了live demo,但正在使用change activity。
<javascript>
function trim(el) {
el.value = el.value.
replace(/(^s*)|(s*$)/gi, ""). // removes leading and trailing spaces
replace(/[ ]{2,}/gi, " "). // replaces multiple spaces with one space
replace(/
+/, "
"); // Removes spaces after newlines
return;
}
</script>
<p>Search1: <input type="text" onchange="return trim(this)" /></p>
<p>Search2: <input type="text" onchange="return trim(this)" /></p>
<p>Search3: <input type="text" onchange="return trim(this)" /></p>
<p>Search4: <input type="text" onchange="return trim(this)" /></p>
<p>Search5: <input type="text" onchange="return trim(this)" /></p>
有些人可以帮助我,如何把我的所有投入价值(CSS OR JAVASCRIPT)当作:
<script>
Here in this script will trim blank spaces starting or ending so don t need to add anything in the input
</script>
<input type="text" />
我试图这样做,但没有工作
$(.input).text().trim()
有些人可以帮助我吗?
提前感谢。