2012-07-02 74 views
-2

我創建Eclipse的一個java項目java程序,在這個項目中我有一個HTML表單customer.html如下圖所示如何訪問HTML表單數據

<form> 
Name :<input type="text" id="name"/> 
Address: <input type="text" id="add"/> 
Age:<input type="int" id="age"/> 
<input type="submit" onclick="what should i call here in my program"/> 
</form> 

一旦用戶填寫表單和提交它,我要訪問在Java代碼中的表單字段是possible.if所以如何否則有任何其它的解決方案來創建一個XML文件,這種形式

+1

提供有關項目的詳細信息以及你究竟需要 –

+0

我想到存儲HTML表單數據進入xml文件 – user1390517

+0

你有沒有看到android的JS界面? – pshirishreddy

回答

2
<input type="submit" onclick="only Javascript function can be called here"/> 
如果你想訪問是java HTML表單元素

你需要在某個控制器或其他jsp上提交你的表單。如..

<form name="new_employee" method="post" action="../admin/newEmployee.do"> 
    Name :<input type="text" name="employeeName"/> 
    Address: <input type="text" name="add"/> 
    Age:<input type="text" name="age"/> 
    <input type="submit" value="Submit"/> 
</form> 

表單元素可以從生成的請求通過它們的名字一樣訪問..

request.getParameter("employeeName");