A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 罗代势 中级黑马   /  2012-11-28 22:16  /  1664 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

<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提交

评分

参与人数 1技术分 +1 收起 理由
古银平 + 1 神马都是浮云

查看全部评分

1 个回复

倒序浏览
值得学习ing!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马