JavaScript String常用方法和属性
Posted Mr hu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript String常用方法和属性相关的知识,希望对你有一定的参考价值。
一、string中的常用属性
1. length
说明:
字符串的长度属性,一直保持跟踪着该字符串中包含的字符数。
二、string中的常用方法
1. toLowerCase() 和 toUpperCase()
说明:
toLowerCase(): returns a copy of the string with its letters converted to lowercase. Numbers, symbols, and other characters are not affected.
toUpperCase(): returns a copy of the string with its letters converted to capitals. Numbers, symbols, and other characters are not affected.
2. trim()
说明:
returns a copy of the string with beginning and ending whitespace characters removed.
以上是关于JavaScript String常用方法和属性的主要内容,如果未能解决你的问题,请参考以下文章