タグ

ブックマーク / developer.mozilla.org (4)

  • String.prototype.charCodeAt() - JavaScript | MDN

    Standard built-in objectsStringConstructorString() constructorStatic methodsString.fromCharCode()String.fromCodePoint()String.raw()Instance methodsString.prototype.anchor() Deprecated String.prototype.at()String.prototype.big() Deprecated String.prototype.blink() Deprecated String.prototype.bold() Deprecated String.prototype.charAt()String.prototype.charCodeAt()String.prototype.codePointAt()String

    String.prototype.charCodeAt() - JavaScript | MDN
  • Node: compareDocumentPosition() method - Web APIs | MDN

    An integer value representing otherNode's position relative to node as a bitmask combining the following constant properties of Node: Node.DOCUMENT_POSITION_DISCONNECTED (1) Both nodes are in different documents or different trees in the same document. Node.DOCUMENT_POSITION_PRECEDING (2) otherNode precedes the node in either a pre-order depth-first traversal of a tree containing both (e.g., as an

    Node: compareDocumentPosition() method - Web APIs | MDN
  • RegExp - JavaScript | MDN

    RegExp オブジェクトは、パターンでテキストを検索するために使用します。 正規表現を詳しく知りたい方は JavaScript ガイド の 正規表現 を参考にしてください。 解説 リテラル記法とコンストラクター RegExp オブジェクトを生成するには二通りの方法があります。リテラル記法とコンストラクターです。 リテラル記法は引数をスラッシュで囲み、引用符は使用しません。 コンストラクター関数の引数はスラッシュで囲むのではなく、引用符を使用します。 以下の三つの式は、同じ正規表現を生成します。 /ab+c/i new RegExp(/ab+c/, 'i') // リテラル記法 new RegExp('ab+c', 'i') // コンストラクター リテラル記法では、正規表現が評価されるときにコンパイルを行います。正規表現が変化しない場合は、リテラル記法を使用してください。例えばループ内で

    RegExp - JavaScript | MDN
  • Selection - Web API | MDN

    Selection オブジェクトは、ユーザーが選択したテキストの範囲、またはキャレットの現在の位置を表します。検査や操作のために Selection オブジェクトを取得するには、 window.getSelection() を呼び出してください。 ユーザーは、左から右(文書順)または右から左(文書と逆順)に選択することができます。アンカー (anchor) はユーザーが選択を開始した場所、フォーカス (focus) はユーザーが選択を終了した場所である。デスクトップマウスで選択する場合、アンカーはマウスボタンを押した場所に置かれ、フォーカスはマウスボタンを離した場所に置かれます。 メモ: アンカーとフォーカスは、選択範囲の開始位置と終了位置と混同しないようにしましょう。アンカーはフォーカスの前に置かれることもあればその逆もあり、 選択の方向によって異なります。 Selection.anch

    Selection - Web API | MDN
  • 1