728x90
반응형
폼정보확인 확인을 누르면 주소칸에 HELLO가 자동으로 기입
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<form name="frm" method="get" target="win" action="sam.js">
<input type="button" value="폼정보확인" onclick="sam_info()">
주소<input type="text" name="add">
</form>
<script>
function sam_info()
{
document.frm.add.focus();
str="";
str+="폼 정보확인 : 이름 -" + document.forms[0].name; //배열로 접근 (document적어줘야 함)
str+="\n폼 정보확인 : 메소드 -" + document.frm.method; //폼의 이름으로 접근
str+="\n폼 정보확인 : 액션 -" + document.frm.action;
str+="\n폼 정보확인 : 길이 -" + frm.length;
str+="\n폼 정보확인 : 인코딩 -" + frm.encoding; //document제거해도 결과는 같음
alert(str);
document.frm.add.value="HELLO"
//alert("폼 정보확인" + document.frm.name);
//alert("폼 정보확인 : " + document.frm.method);
}
</script>
</body>
</html>
728x90
반응형