jquery Delete string space trim () function

Source: Internet
Author: User
Tags php tutorial trim

Jquery.trim (str)
Returns a string;
Removes spaces from the head and tail of a string.
Removes spaces, line breaks, and tabs from the head and tail of a string. Spaces, line breaks, and tabs in the middle (middle) of the string are not moved.
The newline character of jquery is n

Used for trimming whitespace
Trimleft =/^s+/,
TrimRight =/s+$/,

Use native String.Trim function wherever possible
Trim:trim?
function (text) {
return text = null?
"" :
Trim.call (text);
} :

Otherwise use our own trimming functionality
function (text) {
return text = null?
"" :
Text.tostring (). Replace (Trimleft, ""). Replace (TrimRight, "");
},

Look at an example application

<!doctype html>
<script src= "Http://code.jquery.com/jquery-1.5.js" ></script>
<body>
<button>show Trim example</button>
<script>

$ ("button"). Click (function () {
var str = "Lots of spaces before and after";
Alert ("'" + str + "");

str = Jquery.trim (str);
Alert ("'" + str + "'-no longer");
});

</script>

</body>

From the above example can be seen in fact, the Jquery.trim function and JS in the trim is very similar, I remember the day before yesterday I wrote a PHP tutorial trim function They all datong small righteousness, well crap said here.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.