0
<textarea>
요소에서 value
을 변경하려고합니다. 이 코드는 Firefox에서 훌륭하게 작동하지만 IE는 오류 onblur
이 있다고 주장하며 값을 설정하지 않습니다.IE에서 자바 스크립트로 텍스트 영역 값을 설정하지 않겠습니까?
<textarea
name="comment"
id="comment"
rows="8"
cols="80"
style="color:grey;"
onfocus="if(this.value=='Add a comment...') {this.style.color='black'; this.value='';}"
onblur="if(this.value=='') {this.style.color='grey'; this.value='Add a comment...';}">Add a comment...</textarea>
내가 뭘 잘못하고 있니?
는 대부분의 경우, 그들은 미국의 색 이름입니다) –
네 - 그것의 미국 COLOR 이름 : – Kirtan