本帖最后由 c755731262 于 2015-10-15 12:14 编辑
- <html>
- <script>
- function a()
- {
- f.submit();
- }
-
- function b()
- {
- f.reset(); //form 对象的2个方法submit reset,为什么表单信息不能发送到邮箱
- }
- </script>
- <body>
- <form name="f" action="mailto:755731262@qq.com" method="get">
- <input type="text" name="t" size=10>
- <div onclick="a()">提交</div>
- <div onclick="b()">重置</div>
- </form>
- </body>
- </html>
复制代码
|