码迷,mamicode.com
首页 > 编程语言 > 详细

javascript获取表单值的7种方式

时间:2014-09-13 15:48:45      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   使用   java   ar   for   div   

见代码:

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>表单对象--获取表单值的7种方式</title>
</head>
<body>
    <form action="" name="myform">
        <input type="text" name="user" value="admin">
    </form>

    <script>
        document.write(document.myform.user.value+"1<br/>");
        document.write(document[myform].user.value+"2<br/>");
        document.write(document.forms.myform.user.value+"3<br/>");
        document.write(document.forms[0].user.value+"5<br/>");
        document.write(document.forms[myform].user.value+"4<br/>");
        document.write(document.forms.item(0).user.value+"6<br/>");
        document.write(document.forms.item(myform).user.value+"7<br/>");//FF可能不支持
        
    </script>
</body>
</html>

 

推荐使用

document.write(document.myform.user.value);

javascript获取表单值的7种方式

标签:style   blog   color   io   使用   java   ar   for   div   

原文地址:http://www.cnblogs.com/52fhy/p/3969824.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!