JS Math String DOM
1450 ワード
Math数学関数Math.abs Math.ceil Math.floor Math.round Math.randomは[n-m]ランダム整数、Mathを取得する.max Math.min Math.PI Math.pow Math.sqrt
String
文字列の値を取得
文字列のいずれかの値をとるutf符号化
あるutf符号化に対応する文字をとる
パラメータ:(文字列の下付き開始、切り取り長)戻り値:切り取った文字または文字列は元の文字列を変更しません
パラメータ:(文字列の最初の下付き文字、最後の下付き文字[この下付き文字を含まない値])戻り値:切り取った文字または文字列は元の文字列を変更しません
substringに似ています
文字列をすべて大文字に変換
文字列をすべて小文字に変換
パラメータ:(文字または文字列)戻り値:パラメータが文字列に最初に表示される位置の下付き文字で、ない場合-1
パラメータ:(文字または文字列)戻り値:パラメータが文字列内で最後に表示された位置の下付きラベル、なし-1
split replace match
DOM取得要素メソッドgetElementById getElementByTagName getElementByName getElementByName getElementByClassName document.documentElement document.body querySelector querySelectorAll
|\| nodeType | nodeName | nodeValue |
|エレメントノード|1|ラベル名大文字|null||テキストノード|3|#text|テキストコンテンツ||アノテーションノード|8|#comment|アノテーションコンテンツ||document|9|#document|null|
String
charAt
文字列の値を取得
charCodeAt
文字列のいずれかの値をとるutf符号化
let a = 'A' ; a.charCodeAt() => 65
String.fromCharCode
あるutf符号化に対応する文字をとる
// String.fromCharCode( 65 ) => 'A'
substr
パラメータ:(文字列の下付き開始、切り取り長)戻り値:切り取った文字または文字列は元の文字列を変更しません
substring
パラメータ:(文字列の最初の下付き文字、最後の下付き文字[この下付き文字を含まない値])戻り値:切り取った文字または文字列は元の文字列を変更しません
slice
substringに似ています
toUpperCase
文字列をすべて大文字に変換
toLowerCase
文字列をすべて小文字に変換
indexOf
パラメータ:(文字または文字列)戻り値:パラメータが文字列に最初に表示される位置の下付き文字で、ない場合-1
lastIndexOf
パラメータ:(文字または文字列)戻り値:パラメータが文字列内で最後に表示された位置の下付きラベル、なし-1
split replace match
//
let num = '1011';
parseInt(num, 2) // => 11
//
num.toString(2); // => '1011'
DOM取得要素メソッドgetElementById getElementByTagName getElementByName getElementByName getElementByClassName document.documentElement document.body querySelector querySelectorAll
Dom
|\| nodeType | nodeName | nodeValue |
|エレメントノード|1|ラベル名大文字|null||テキストノード|3|#text|テキストコンテンツ||アノテーションノード|8|#comment|アノテーションコンテンツ||document|9|#document|null|
DOM
DOM