zoukankan      html  css  js  c++  java
  • form表单4种提交方式

    <!DOCTYPE html>
    <html>
    <head>
    <title>JavaScript表单提交四种方式</title>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <script type="text/javascript" >
    function submit()//第二种提交方式,用普通button按钮结合JavaScript提交
    {
    alert(11);

    //设置提交路径
    var submit= document.getElementById("submit");
    submit.submit(); //提交
    }
    </script>
    </head>
    <body>
    <!-- 第一种提交方式也是最普遍的提交方式 -->
    <form action="1111.html">
    用户名:<input type="text" value="1234" name="username">
    <input type="submit" value="submit提交"/>
    </form>
    <hr>
    <!-- 第二种提交方式,用普通button按钮结合JavaScript提交-->
    <form id="form1" action="2222.html">
    用户名:<input type="text" value="1234" name="username">
    <input id="submit" type="button" value="普通button结合JavaScript提交" onclick="submit();"/>
    </form>
    <hr>
    <!-- 第三种提交方式,用图片提交-->
    <form action="3333.html">
    用户名:<input type="text" value="1234" name="username">
    <input type="image" src="fmy.jpg" width="50px" height="50px"/>
    </form>
    <hr>
    <!-- 第四种提交方式,超链接提交,直接把表单内容写在链接中,几乎没人用-->
    <a href="44444.html?username=1234">超链接提交,直接把表单内容写在链接中,几乎没人用</a>
    </body>
    </html>

  • 相关阅读:
    C,C++,VC++有什么区别
    RF & Microarray
    偏最小二乘法
    各种机器学习方法的优缺点
    纠错输出编码法ECOC
    遗传算法GA
    支持向量机SVM
    神经网络NN
    机器学习的基本概念
    SPI通信协议(SPI总线)学习
  • 原文地址:https://www.cnblogs.com/wulinzi/p/6115921.html
Copyright © 2011-2022 走看看