Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. CSS
  4. escape()

CSS: escape() static method

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.

TheCSS.escape() static method returns astring containing the escaped string passed as parameter, mostly foruse as part of a CSS selector.

Syntax

js
CSS.escape(str)

Parameters

str

The string to be escaped.

Return value

The escaped string.

Examples

Basic results

js
CSS.escape(".foo#bar"); // "\\.foo\\#bar"CSS.escape("()[]{}"); // "\\(\\)\\[\\]\\{\\}"CSS.escape('--a'); // "--a"CSS.escape(0); // "\\30 ", the Unicode code point of '0' is 30CSS.escape('\0'); // "\ufffd", the Unicode REPLACEMENT CHARACTER

In context uses

To escape a string for use as part of a selector, theescape() method canbe used:

js
const element = document.querySelector(`#${CSS.escape(id)} > img`);

Theescape() method can also be used for escaping strings, although itescapes characters that don't strictly need to be escaped:

js
const element = document.querySelector(`a[href="#${CSS.escape(fragment)}"]`);

Specifications

Specification
CSS Object Model (CSSOM)
# the-css.escape()-method

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2026 Movatter.jp