Movatterモバイル変換


[0]ホーム

URL:


  1. 面向开发者的 Web 技术
  2. JavaScript
  3. JavaScript 参考
  4. JavaScript 标准内置对象
  5. String
  6. String.prototype.toLowerCase()

此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in EnglishAlways switch to English

String.prototype.toLowerCase()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015年7月⁩.

StringtoLowerCase() 方法将该字符串转换为小写形式。

尝试一下

const sentence = "The quick brown fox jumps over the lazy dog.";console.log(sentence.toLowerCase());// Expected output: "the quick brown fox jumps over the lazy dog."

语法

js
toLowerCase()

返回值

一个新的字符串,表示转换为小写的调用字符串。

描述

toLowerCase() 方法返回将字符串转换为小写形式后的值。toLowerCase() 不会影响字符串str 本身的值。

示例

使用toLowerCase()

js
console.log("ALPHABET".toLowerCase()); // 'alphabet'

规范

Specification
ECMAScript® 2026 Language Specification
# sec-string.prototype.tolowercase

浏览器兼容性

参见

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp