텍스트 필드에 디폴트 메세지를 보여주고 클릭하면 사라집니다
본문
<html>
<head>
<title> Sample </title>
<meta http-equiv=content-type content=text/html; charset=euc-kr>
<script>
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}
</script>
</head>
<body>
<p>마우스를 클릭하면 텍스트가 사라집니다 </p>
<form>
<input type="text" value="검색어를 입력 하세요" onFocus="clearText(this)">
</form>
</body>
</html>
출처 : http://www.aircon1004.com/data/bbs/board.php?bo_table=pds1&wr_id=112
<head>
<title> Sample </title>
<meta http-equiv=content-type content=text/html; charset=euc-kr>
<script>
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}
</script>
</head>
<body>
<p>마우스를 클릭하면 텍스트가 사라집니다 </p>
<form>
<input type="text" value="검색어를 입력 하세요" onFocus="clearText(this)">
</form>
</body>
</html>
출처 : http://www.aircon1004.com/data/bbs/board.php?bo_table=pds1&wr_id=112
관련링크
댓글목록
등록된 댓글이 없습니다.