<form method="post" name="form">
<input type="text" name="user" value="我的名字"/>
<input type="password" name="pass" value=""/>
<input type="submit" onclick="return check();">
</form>
<script>
function check(){
var fm=document.form; //
alert(fm.method);//得到:post
alert(fm.user.value);//得到:我的名字
}
</script>