텍스트필드에 디폴트값 마우스 클릭시 사라지게하기

2010. 11. 12. 05:34웹/Html/Javascript/Css

<script>
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
        thefield.value = ""
}
</script>

<form>
<input type="text" value="클릭하면 사라져요" onFocus="clearText(this)">
</form>