-1

我想从字符串末尾修剪空字符串。例如; txtSearch 的值为 'test' 如何替换为 'test'?

<asp:TextBox runat="server" ID="txtSearch" onKeyDown="return search_onKeyDown(event);" onKeyUp="search_onKeyUp(event);"
4

2 回答 2

1

您可以.trim()在 jQuery 中使用。它将修剪所有第一个和最后一个空格

。修剪()

$.trim("    hello, how are you?    ");

输出: "hello, how are you?"

于 2013-05-22T06:59:24.210 回答
-1

您可以在代码中使用 C# TrimEnd()函数

于 2013-05-22T07:00:29.343 回答