我在jsp中具有以下字段集。
alter table employee.newjoiners compact 'MAJOR'
我试图在servlet的帮助下通过Java启用/禁用它。这是我的servlet。
<fieldset id="myFieldset" method ="post" action="Values">
<legend> Value Input</legend>
<table border="0" cellpadding="3" cellspacing="3" width="100%">
<tbody>
<tr>
<td class="form-row" style="font-weight:bold; font-size:10px; color: #006699;">
<label1>Present date</label1> <input id="presentDate" name="presentDate" type="date">
<label1>Payment Type</label1>
<select id="payType" name="payType" style="font-size:11px;text-align: right; width:105px;" >
<option value="A">Advance</option>
<option value="B">In Arrears</option>
</select>
<br/>
</td>
但是,当它不起作用时。同样,out.println为字段集返回null。我不确定我在这里想念什么。
任何帮助将不胜感激。谢谢。
答案 0 :(得分:0)
将数据从Java servlet传递到jsp并在jsp中启用/禁用它对我来说很有效。我没有尝试将字段集传递给servlet,而是使用了我试图禁用的数据。
request.getSession().setAttribute("PresetValEndDate",PresetValEndDate);
window.onload = function (e) {
var datetiMe = "<%= session.getAttribute("PresetValEndDate")%>";
}