form 表单中的数据怎么提交到数据库中

form 表单中的数据怎么提交到数据库中,第1张

form中有个action属性,指明你要提交到哪。

比如你用jsp的话

a.jsp中

...

b.jsp:

<%

String

name

=

request.getParameter("name")

//

这里可以连接数据库

PersonDao

pd

=

new

PersonDaoImpl()

Person

p

=

pd.query(name)

out.println("你提交的名字是:"

+

name

+

",查询结果:"

+

p)

%>

点击删除按钮时调用js,将该条记录的ID作为传入参数,js中调用表单提交。

例如表单为。

<form id="del"><input type="hidden" id="orderId" name="orderId"></form>

js中的 *** 作为。

document.getElementById("orderId").value=1//1为你传入的预约单号的ID

document.getElementById("del").submit()

后台的 *** 作为。

String deleteId=(String)request.getParameter("orderId")

//然后是调用sql语句,根据deleteId去删除该记录。

//1.form表单

//注:上传文件的表单,需要将form标签设置enctype="multipart/form-data"属性,意思是将Content-Type设置成multipart/form-data

<form action="xxx" method="post" enctype="multipart/form-data">

<input type="text" name="name" id="id1" /><br />

<input type="password" name="password" /><br />

<input type="file" name="file" value="选择文件"/><input id="submit_form" type="submit" value="提交"/>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10095501.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存