| 方法 | 描述 |
| [anchor()](https://www.w3school.com.cn/jsref/jsref_anchor.asp) | 創建 HTML 錨。 |
| [big()](https://www.w3school.com.cn/jsref/jsref_big.asp) | 用大號字體顯示字符串。 |
| [blink()](https://www.w3school.com.cn/jsref/jsref_blink.asp) | 顯示閃動字符串。 |
| [bold()](https://www.w3school.com.cn/jsref/jsref_bold.asp) | 使用粗體顯示字符串。 |
| [charAt()](https://www.w3school.com.cn/jsref/jsref_charAt.asp) | 返回在指定位置的字符。 |
| [charCodeAt()](https://www.w3school.com.cn/jsref/jsref_charCodeAt.asp) | 返回在指定的位置的字符的 Unicode 編碼。 |
| [concat()](https://www.w3school.com.cn/jsref/jsref_concat_string.asp) | 連接字符串。 |
| [fixed()](https://www.w3school.com.cn/jsref/jsref_fixed.asp) | 以打字機文本顯示字符串。 |
| [fontcolor()](https://www.w3school.com.cn/jsref/jsref_fontcolor.asp) | 使用指定的顏色來顯示字符串。 |
| [fontsize()](https://www.w3school.com.cn/jsref/jsref_fontsize.asp) | 使用指定的尺寸來顯示字符串。 |
| [fromCharCode()](https://www.w3school.com.cn/jsref/jsref_fromCharCode.asp) | 從字符編碼創建一個字符串。 |
| [indexOf()](https://www.w3school.com.cn/jsref/jsref_indexOf.asp) | 檢索字符串。 |
| [italics()](https://www.w3school.com.cn/jsref/jsref_italics.asp) | 使用斜體顯示字符串。 |
| [lastIndexOf()](https://www.w3school.com.cn/jsref/jsref_lastIndexOf.asp) | 從後向前搜索字符串。 |
| [link()](https://www.w3school.com.cn/jsref/jsref_link.asp) | 將字符串顯示為鏈接。 |
| [localeCompare()](https://www.w3school.com.cn/jsref/jsref_localeCompare.asp) | 用本地特定的順序來比較兩個字符串。 |
| [match()](https://www.w3school.com.cn/jsref/jsref_match.asp) | 找到一個或多個正則表達式的匹配。 |
| [replace()](https://www.w3school.com.cn/jsref/jsref_replace.asp) | 替換與正則表達式匹配的子串。 |
| [search()](https://www.w3school.com.cn/jsref/jsref_search.asp) | 檢索與正則表達式相匹配的值。 |
| [slice()](https://www.w3school.com.cn/jsref/jsref_slice_string.asp) | 提取字符串的片斷,並在新的字符串中返回被提取的部分。 |
| [small()](https://www.w3school.com.cn/jsref/jsref_small.asp) | 使用小字號來顯示字符串。 |
| [split(分隔符號\[, 返回的數組的最大長度\])](https://www.w3school.com.cn/jsref/jsref_split.asp) | 把字符串分割為字符串數組。 |
| [strike()](https://www.w3school.com.cn/jsref/jsref_strike.asp) | 使用刪除線來顯示字符串。 |
| [sub()](https://www.w3school.com.cn/jsref/jsref_sub.asp) | 把字符串顯示為下標。 |
| [substr(起始\[, 長度\])](https://www.w3school.com.cn/jsref/jsref_substr.asp) | 從起始索引號提取字符串中指定數目的字符。 |
| [substring()](https://www.w3school.com.cn/jsref/jsref_substring.asp) | 提取字符串中兩個指定的索引號之間的字符。 |
| [sup()](https://www.w3school.com.cn/jsref/jsref_sup.asp) | 把字符串顯示為上標。 |
| [toLocaleLowerCase()](https://www.w3school.com.cn/jsref/jsref_toLocaleLowerCase.asp) | 把字符串轉換為小寫。 |
| [toLocaleUpperCase()](https://www.w3school.com.cn/jsref/jsref_toLocaleUpperCase.asp) | 把字符串轉換為大寫。 |
| [toLowerCase()](https://www.w3school.com.cn/jsref/jsref_toLowerCase.asp) | 把字符串轉換為小寫。 |
| [toUpperCase()](https://www.w3school.com.cn/jsref/jsref_toUpperCase.asp) | 把字符串轉換為大寫。 |
| toSource() | 代表對象的源代碼。 |
| [toString()](https://www.w3school.com.cn/jsref/jsref_toString_string.asp) | 返回字符串。 |
| [valueOf()](https://www.w3school.com.cn/jsref/jsref_valueOf_string.asp) | 返回某個字符串對象的原始值。 |