gpt4 book ai didi

java - Jsp中如何设置输入框的值

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:02:16 25 4
gpt4 key购买 nike

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>

<html>
<form action="index.jsp">

<body>
First INPUT:
<input name="firstinput" type="text" value=<%=request.getParameter( "firstinput") %>>
<br>
<input type="submit" value="Submit">
<% String first = request.getParameter("firstinput");
out.println(first); %>
</body>
</form>
</html>

这是我的代码,当 Put Input tax 然后在 Button 单击其设置为 tax 和 Print Tax 但是当我对输入“tax”征税时,Value set to tax in Input Box while Print correct “tax” 我想设置输入框点击后输入“tax”时值也为“tax”请帮忙

最佳答案

你有两个:

name="firstinput" 

name="fname"

对于相同的输入字段!

更新:除此之外,更改:

value=<%=request.getParameter("firstinput") %>>

到:

value='<%=request.getParameter("firstinput")%>' />

关于java - Jsp中如何设置输入框的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18159480/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com