当前位置: 代码迷 >> Java Web开发 >> value = ""有关问题
  详细解决方案

value = ""有关问题

热度:66   发布时间:2016-04-17 14:37:35.0
value = ""问题
<input   type   = "text "   name   =   "textname "   value   =   " "> <br>

里面value   =   " "里面放变量是什么格式的呢?

String   str   =   " "


比如   value   =   "+str "         可以吗?

------解决方案--------------------
<%
String str = "12312 ";
%>

<input type = "text " name = "textname " value = <%=str%> > <br>

一个是jsp
1个是html
  相关解决方案