HTML表单提交到.HTML实例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML表单提交到.HTML实例相关的知识,希望对你有一定的参考价值。
form action="1.html" method="get" 在另一个html里如何接收呢? 不用js行吗? 请给出完整代码.
用js 请给出完整代码..
你提交过去有啥意义???
html语言没有编程能力,是一种文本标记语言而已,你指望它能捕获get然后进行相应处理的话是不可能的。追问
只要能提交就可以了
参考技术B 单纯的使用html是不能做到2个页面之间的相关。必须借助到其他的语言。 参考技术C 除非第二个页面时jsp或者什么,html是不能接收参数的。html可以说是静态的。 参考技术D String id = request.getparmeter("id"); 第5个回答 2013-11-18 直接参数传递15-js提交表单的简单检测实例
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> <script src="${pwd }/js/jquery-1.11.0.js"></script> <script type="text/javascript"> /* function submitForm() { var name = $("#name"); var msg = ""; if ($.trim(name.val()) == "") { msg = "姓名不能为空!"; name.focus(); alert("姓名不能为空!"); return false; } $("#goodsForm").submit(); } */ $(function(){ /** 员工表单提交 */ $("#goodsForm").submit(function(){ var name = $("#name"); var price = $("#price"); var num = $("#num"); var goodsid = $("#goodsid"); var msg = ""; if ($.trim(name.val()) == ""){ msg = "姓名不能为空!"; name.focus(); alert(msg); } if (msg != ""){ return false; }else{ return true; } $("#goodsForm").submit(); }); }); </script> </head> <body> <form action="/goods/test" id="goodsForm" name="goodsForm" method="post"> <!-- 隐藏表单,flag表示添加标记 2 是添加数据 --> <input type="hidden" name="flag" value="2"> <table> <tr> <td class="font3 fftd">商品名:<input type="text" name="name" id="name" size="20" /> </td> </tr> <tr> <td class="main_tdbor"></td> </tr> <tr> <td align="left" class="fftd"> <input type="submit" id="submitbutton" onclick="" value="添加"> <input type="reset" value="取消 "></td> </tr> </table> </form> </body> </html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> <script src="${pwd }/js/jquery-1.11.0.js"></script> <!-- <script language="javascript"> function print(){ var a=myform.name.value; alert(a); } </script> --> <script type="text/javascript"> function submitForm() { var name = $("#name"); var msg = ""; if ($.trim(name.val()) == "") { msg = "姓名不能为空!"; name.focus(); alert("姓名不能为空!"); return false; } $("#goodsForm").submit(); } </script> </head> <body> <form action="/goods/test" id="goodsForm" name = "goodsForm" method="post"> <!-- 隐藏表单,flag表示添加标记 2 是添加数据 --> <input type="hidden" name="flag" value="2"> <table width="100%" border="0" cellpadding="0" cellspacing="10" class="main_tab"> <tr> <td class="font3 fftd"> <table> <tr> <td class="font3 fftd">商品名:<input type="text" name="name" id="name" size="20" /> </td> </tr> </table> </td> </tr> <tr> <td class="main_tdbor"></td> </tr> <tr> <td align="left" class="fftd"> <input type="button" id="submitbutton" onclick="submitForm()" value="添加"> <input type="reset" value="取消 "></td> </tr> </table> </form> </body> </html>
以上是关于HTML表单提交到.HTML实例的主要内容,如果未能解决你的问题,请参考以下文章