码迷,mamicode.com
首页 > 其他好文 > 详细

document.forms对象集合

时间:2021-01-01 12:14:06      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:element   oct   rms   微软   rgb   index   family   val   button   

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>index</title>
    <style>
        *{
            font-family: 微软雅黑;
        }
    </style>
</head>
<body>
    <form action="go.php">
        <p>用户名:</p>
        <p><input type="text" name=‘username‘></p>
        <p><input type="submit" value="Ok"></p>
    </form>    
    <hr>
    <form action="go2.php">
        <p>用户名:</p>
        <p><input type="text" name=‘username‘></p>
        <p><input type="submit" value="Ok"></p>
    </form>    

    <button id=‘btn1‘>表单1</button>
    <button id=‘btn2‘>表单2</button>
</body>
<script>
btn1=document.getElementById(btn1);
btn2=document.getElementById(btn2);
objs=document.forms;

btn1.onclick=function(){
    objs[0].submit();
}

btn2.onclick=function(){
    objs[1].submit();
}
</script>
</html>

 

document.forms对象集合

标签:element   oct   rms   微软   rgb   index   family   val   button   

原文地址:https://www.cnblogs.com/xiong-hua/p/14199346.html

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