JavaScript 文字列操作 新しいページはコチラ
提供: yonewiki
(→斜体文字 italic) |
(→斜体文字 italic) |
||
| 291行: | 291行: | ||
</yjavascript> | </yjavascript> | ||
| − | === 斜体文字 | + | === 斜体文字 italics === |
| − | *strData10. | + | *strData10.italics() |
| 300行: | 300行: | ||
サンプルスクリプト | サンプルスクリプト | ||
<syntaxhighlight lang="javascript" line start="1"> | <syntaxhighlight lang="javascript" line start="1"> | ||
| − | strData10 = new String("文字の斜体化( | + | strData10 = new String("文字の斜体化(italics)"); |
| − | document.write(strData10. | + | document.write(strData10.italics(), "</BR>"); |
</syntaxhighlight> | </syntaxhighlight> | ||
| 309行: | 309行: | ||
<yjavascript> | <yjavascript> | ||
| − | strData10 = new String("文字の斜体化( | + | strData10 = new String("文字の斜体化(italics)"); |
| − | document.write(strData10, "</BR>"); | + | document.write(strData10.italics(), "</BR>"); |
</yjavascript> | </yjavascript> | ||