需要跳转到另一个页面,通过数据的一个字段将数据传到另一个页面,这个通过a标签里面的herf 怎么写啊?
HTML是静态的话,可以使用URL链接传值,比如a.html和b.html两个页面
a.html中有一个链接
进入b.html
链接文字xxx 在b.jsp 通过
%
String username=request.getParameter("name");
String userpass=request.getParameter("password");
%>取传过来的值
像这样传值:::f="http://seller.dorabox/?c=registered&a=index&mobile=${mobile}&cms=1" style="text-decoration: underline;c:blue">http://seller.dorabox.net/?c=registered&a=index&mobile=${mobile}&cms=1
嗯 是的。"/eCard/orderExport.html?realname="+realname+"&mobile="+mobile 就像这样一直传值下去,想传多少都行
第二种是向数据库传值的。