묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
html 의 경고창 소스를 php에서도 연결해서 사용할수 있나요?
2006.06.20 15:23
<script language="javascript">
function MemSingupCheck(theForm) {
if(theForm.FROM_NAME.value=="") {
window.alert("보내는이의 이름을 입력해 주세요!");
theForm.FROM_NAME.focus();
return false;
}
if(theForm.FROM_EMAIL.value=="") {
window.alert("보내는메일주소 입력해 주세요!");
theForm.FROM_EMAIL.focus();
return false;
}
if(theForm.SUBJECT.value=="") {
window.alert("제목을 입력하셔야 합니다!");
theForm.SUBJECT.focus();
return false;
}
if(theForm.TEL.value=="") {
window.alert("연락처를 입력하세요!");
theForm.comment.focus();
return false;
}
if(theForm.comment.value=="") {
window.alert("내용을 입력하세요!");
theForm.comment.focus();
return false;
}
}
</script>
이런 스크립트 소스를요 html에선 없애고 php 화일에 올려서 경고창이 뜨게 할수 있나요?
가능하다면 하는 방법을 가르쳐 주세요
function MemSingupCheck(theForm) {
if(theForm.FROM_NAME.value=="") {
window.alert("보내는이의 이름을 입력해 주세요!");
theForm.FROM_NAME.focus();
return false;
}
if(theForm.FROM_EMAIL.value=="") {
window.alert("보내는메일주소 입력해 주세요!");
theForm.FROM_EMAIL.focus();
return false;
}
if(theForm.SUBJECT.value=="") {
window.alert("제목을 입력하셔야 합니다!");
theForm.SUBJECT.focus();
return false;
}
if(theForm.TEL.value=="") {
window.alert("연락처를 입력하세요!");
theForm.comment.focus();
return false;
}
if(theForm.comment.value=="") {
window.alert("내용을 입력하세요!");
theForm.comment.focus();
return false;
}
}
</script>
이런 스크립트 소스를요 html에선 없애고 php 화일에 올려서 경고창이 뜨게 할수 있나요?
가능하다면 하는 방법을 가르쳐 주세요
html 파일 만든 것을 고대로 확장자만 php 로 바꿔도 잘 돌아가요 :)