• ベストアンサー

text入力した文字の色って変えられますか?

<input type="text" ・・・> の入力テキストの文字の色って変えられるんでしょうか? どなたかご教授ください!よろしくお願いします!

質問者が選んだベストアンサー

  • ベストアンサー
  • BLUEPIXY
  • ベストアンサー率50% (3003/5914)
回答No.2

<input type="text" ・・・ style="color:red">

その他の回答 (1)

noname#22259
noname#22259
回答No.1

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><title>Untitled</title> <meta http-equiv="Content-Script-Type" content="text/javascript"> <script type="text/javascript"> function chColor(){ if(document.getElementById){ document.getElementById('feld').style.color='#FF0000'; } } </script> </head> <body> <input id="feld" type="text" value="test-string"> <input type="button"value="ChangeColor" onclick="chColor()"> </body> </html>

関連するQ&A