jsp <input />值未显示为类form-control

时间:2018-03-05 16:38:17

标签: javascript html class form-control

我使用HTML生成jsp代码,html输出如下所示: -

<input type="text" style="font-weight:bold; background-color: orange; color: blue;" name="req_hallname" class="form-control" title="Conference Hall Requested" value="CIG-VC">

其中value=""填充CIG-VC中的jsp code

当我使用CIG-VC时,此class="form-control"的值可见。如果我删除class="form-control"定义,输入字段 IS 会显示值,但格式会被破坏。

以下是两种情况的图像

enter image description here

请告知如何克服这一点。

1 个答案:

答案 0 :(得分:1)

您可以使用:

 <div class="form-group" >
  <label class="control-label col-sm-2" for="conference">Conference Hall Requested 
   :
  </label>
     <div class="col-sm-8"> 
      <input id="conference" type="text" style="font-weight:bold; background-
         color:orange; color: blue;"  name="req_hallname" value="CIG-VC"/>
     </div>
 </div>