如何从javascript更新的html向sevlet发送值

时间:2017-09-14 09:16:37

标签: javascript jquery html servlets

<form method="post" action="../SubCategory">
 <div id="destinationFields">
   //after the page loaded i will drag and drop some divs fromsourceFields by jquery plugin
 </div>
<button type="submit" id="button">Add</button>
</form>

 <div id="sourceFields">

   <div>
   <label class="control-label"  id="label" for="Name">size:</label>
   <input type="hidden" value="1" name="labelValue" />
  </div>

   <div>
   <label class="control-label"  id="label" for="Name">Brand :</label>
   <input type="hidden" value="2" name="labelValue" />
  </div>

   <div>
   <label class="control-label"  id="label" for="Name">width:</label>
   <input type="hidden" value="3" name="labelValue" />
  </div>

 </div>

这是页面加载的方式,表单中有一些元素(div)(你可以在 sourceFields 中看到)

我将它拖放到 destinationFields 但是在我按下提交并检查sevlet后,更改没有完成 (我认为这意味着实际的html没有改变)

1 个答案:

答案 0 :(得分:0)

使用Ajax调用。 有关详细信息,请访问给定的网址: - http://www.programming-free.com/2012/08/ajax-with-jsp-and-servlet-using-jquery.html