묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
간단한건데 도와주실분
2005.10.19 15:40
폼메일에 받는사람 주소적는 부분인데요
안보이게 하는방법이나 마우스로 쓸수있는걸 막는 방법은 없을까요?
<tr>
<td>
<INPUT type=text name="tomail" size=30 value="miwave2@yahoo.com"
style="background-color: white;
border-top: 0px;
border-bottom: 0px;
border-left: 0px;
border-right: 0px;
font-family: 굴림; font-size: 9pt">
<FONT size=1> </FONT>
</td></tr>
안보이게 하는방법이나 마우스로 쓸수있는걸 막는 방법은 없을까요?
<tr>
<td>
<INPUT type=text name="tomail" size=30 value="miwave2@yahoo.com"
style="background-color: white;
border-top: 0px;
border-bottom: 0px;
border-left: 0px;
border-right: 0px;
font-family: 굴림; font-size: 9pt">
<FONT size=1> </FONT>
</td></tr>
댓글 2
-
ganji
2005.10.19 18:00
-
이동건
2005.10.19 23:40
input 태그안에 disabled를 추가하면 폼안의 내용은 보이지만, 직접 쓸수는 없게 되죠...
<tr>
<td>
<INPUT type=text name="tomail" size=30 value="miwave2@yahoo.com"
style="background-color: white;
border-top: 0px;
border-bottom: 0px;
border-left: 0px;
border-right: 0px;
font-family: 굴림; font-size: 9pt" disabled>
<FONT size=1> </FONT>
</td></tr>
<tr>
<td>
<INPUT style="visibility: hidden;" type=text name="tomail" size=30 value="miwave2@yahoo.com"
style="background-color: white;
border-top: 0px;
border-bottom: 0px;
border-left: 0px;
border-right: 0px;
font-family: 굴림; font-size: 9pt">
<FONT size=1> </FONT>
</td></tr>