- ベストアンサー
text入力した文字の色って変えられますか?
<input type="text" ・・・> の入力テキストの文字の色って変えられるんでしょうか? どなたかご教授ください!よろしくお願いします!
- みんなの回答 (2)
- 専門家の回答
質問者が選んだベストアンサー
<input type="text" ・・・ style="color:red">
その他の回答 (1)
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>