-1

javascriptを使用してこれを行うにはどうすればよいですか? たとえば、テキスト ボックスに表示するテキスト Axxxxxx があります。最初のテキストが A の場合、最初のテキスト スタイルは通常のスタイルで、次のテキスト スタイルは斜体です。あ*xxxxxx*

それ以外の場合、テキストはテキスト ボックスxxxxxx内ですべて斜体になります。

出来ますか?どうもありがとう。

4

2 に答える 2

0

Your best bet for something like this is to investigate the contentEditable property, but I've never used it myself.

All I know is, you can't have text of different styles inside the same textbox. Mostly because the text isn't even a node, it's an attribute value.

于 2012-06-08T03:28:15.993 に答える