jquery中trim方法有什么用

2024年06月26日 建站教程

jquerytrim方法有什么用,如何运用,下面web建站小编给大家简单介绍一下关于trim的运用方法!

trim()主要的作用是用来删除删除字符串开始和末尾的空格,下面给大家介绍一下实现代码!

$(function() {
  var str = "         lots of spaces before and after         "
  $("#original").html("Original String: '" + str + "'");
  $("#trimmed").html("$.trim()'ed: '" + $.trim(str) + "'");
})

本文链接:http://so.lmcjl.com/news/7322/

展开阅读全文
相关内容