javascriptを使用してこれを行うにはどうすればよいですか? たとえば、テキスト ボックスに表示するテキスト Axxxxxx があります。最初のテキストが A の場合、最初のテキスト スタイルは通常のスタイルで、次のテキスト スタイルは斜体です。あ*xxxxxx*
それ以外の場合、テキストはテキスト ボックスxxxxxx内ですべて斜体になります。
出来ますか?どうもありがとう。
javascriptを使用してこれを行うにはどうすればよいですか? たとえば、テキスト ボックスに表示するテキスト Axxxxxx があります。最初のテキストが A の場合、最初のテキスト スタイルは通常のスタイルで、次のテキスト スタイルは斜体です。あ*xxxxxx*
それ以外の場合、テキストはテキスト ボックスxxxxxx内ですべて斜体になります。
出来ますか?どうもありがとう。
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.