jsp怎么获取超链接作为参数来传递,怎么写怎么获取

jsp怎么获取超链接作为参数来传递,怎么写怎么获取,第1张

传递的话按楼上[<a href="/HomeWorkWeb/delclassjspclassId=<%=classId%>"

这个来传递就行了。

至于获取,可以String id = requestgetParameter(“classId”);//注:这里的classId是地址中问号后第一个参数/。。

把获得的id值传递给你的函数就行了。 SQL语句可以写成。

select from type ,Process where typekind =Processkind where typeid = id//这里的id就是你获得的那个id了~ 以实参的形式传递过去。

登陆页面:

loginjspusername=zhangsan&password=123456

在本页面读出来:

String str1=requestgetParameter("username");

String pwd=requestgetParameter("password");

你的下拉框肯定有一个value吧

这个value就是它的值。要是在js中就用getParmartById()但是你必须设定下拉框的ID,要是在action中就用getParameterNames()没记错的话就是这个

。。

假设这JSP叫 indexjsp,自己提交给自己

<%@ page language="java" contentType="text/html; charset=UTF-8"

pageEncoding="UTF-8"%>

<html>

<body>

<form id="test" method="post" action="indexjsp">

<select id="code"  name="plugin">

<option value="1cn">cn</option>

<option value="2us">us</option>

<option value="3en">en</option>

</select>

<input type="submit" value="提交">

<br>

<%outprintln(requestgetParameter("plugin")); %>

</form>

</body>

</html>

请采纳

以上就是关于jsp怎么获取超链接作为参数来传递,怎么写怎么获取全部的内容,包括:jsp怎么获取超链接作为参数来传递,怎么写怎么获取、JSP页面中如何取得地址栏中传递的参数、JSP中怎样获取上一个页面的下拉框的值等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

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

原文地址: http://outofmemory.cn/web/9382216.html

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

发表评论

登录后才能评论

评论列表(0条)

保存