jquery $.trim () Remove the string space detailed

Source: Internet
Author: User
Tags error code

Using jquery to remove the front and back spaces of a string is simple, use $.trim (Stringtext);//stringtext is a string to remove a space

$.trim (str)

Back: string;

Description: Remove the string and end space.

Example:


First look at the error code error code:

The code is as follows Copy Code
<input type= "text" name= "id=" Results "value=" "/>"
var content = $ (' #content '). Val ();
if (content.trim () = = ")
Alert (' empty ');

The above writing in Firefox will not be an error, but under IE will be an error

So write the following format:

The code is as follows Copy Code

<input type= "text" name= "id=" Results "value=" "/>"

var content = $ (' #results '). Val ();
if ($.trim (content) = = ")
Alert (' empty ');

Or

var content = $ (' #content '). Val ();

if (jquery.trim (content) = = ")

Alert (' empty ');

An instance

  code is as follows copy code

<! 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 AF ter     ";
Alert ("' + str + '");

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

</script>

</body>

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.