Home  >  Article  >  Web Front-end  >  Use js to dynamically add a text box in the foreground and obtain the content of the text box in the background (sample code)_javascript skills

Use js to dynamically add a text box in the foreground and obtain the content of the text box in the background (sample code)_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:12:271139browse

There are two pages in total, as follows:

1. Create page create.jsp

Copy code The code is as follows:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>


<br>
form id="form1" action="request.jsp">







2. Receive data page request.jsp



Copy code The code is as follows:<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>

Test


<%

String data= request.getParameter("Hidden1");

out.println("The data obtained is: " data);
% >






Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn