黑马程序员技术交流社区

标题: get的提交可分为这几种(查缺补漏) [打印本页]

作者: 罗代势    时间: 2012-11-28 22:16
标题: get的提交可分为这几种(查缺补漏)
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script type="text/javascript">
        window.onload = function () {
            document.getElementById("btn").onclick = function () {
                window.location = "handler01.ashx?txt1=通过js跳转";
            }
        }
    </script>
</head>
<body>
<form action="handler01.ashx" method="get">   //第一种form表单的get方式
<input type="text" name="txt1" />
<input type="submit" value="提交表单" />
</form>
<a href="handler01.ashx?txt1=超链接提交">也是get提交</a>   //第二种超链接方式
<input type="button" id="btn" value="js提交" />                       //第三种js提交方式
</body>
</html>                                                                                      //还有一种就是的地址栏上直接写http://localhost:11993/提交方式/handler01.ashx?txt1=URL提交
作者: 许庭洲    时间: 2012-11-29 07:38
值得学习ing!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2