jquery $.trim()去除字符串空格的实现方法【附图例】

前端之家收集整理的这篇文章主要介绍了jquery $.trim()去除字符串空格的实现方法【附图例】前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

jquery $.trim()去除字符串空格的实现方法【附图例】

语法

jQuery.trim()函数用于去除字符串两端的空白字符。

作用

函数可以去除字符串开始和末尾两端的空白字符(直到遇到第一个非空白字符串为止)。它会清除包括换行符、空格、制表符等常见的空白字符。

参数

如果参数str不是字符串类型,该函数自动将其转为字符串(一般调用其toString()方法)。如果参数str为null或undefined,则返回空字符串("")。

返回值

jQuery.trim()函数的返回值为String类型,返回去除两端空白字符串后的字符串。

示例&说明

My JSP 'index.jsp' starting page <Meta http-equiv="pragma" content="no-cache"> <Meta http-equiv="cache-control" content="no-cache"> <Meta http-equiv="expires" content="0"> <Meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <Meta http-equiv="description" content="This is my page">

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

<button id="showBtn">showBtn
<button id="showBtn1">showBtn1

<script src="http://code.jquery.com/jquery-1.5.js"&gt;
<script type="text/javascript">

$("#showBtn").click( function(){
var content = $('#content').val();
if($.trim(content) == ''){
alert('空');
}
} );

$("#showBtn1").click( function(){
var content = $('#content').val();
if(content.trim() == ''){
alert('空');
}
} );

<p style="text-align: center">

不能理所当然的想跟java一样。用一个字符串点方法

错误写法:

正确写法:

以上这篇jquery $.trim()去除字符串空格的实现方法【附图例】就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/jquery/49480.html

猜你在找的jQuery相关文章