<jsp jquery =“”>单击按钮</jsp>时如何制作文本输入框

时间:2013-11-28 06:33:00

标签: javascript jquery jsp

我有一个表(包含复选框),数据如下。还有&#34; ADD&#34;按钮。

<script type="text/javascript">
 I don't know what comes here..
</script>
 .
 .
 .  
 .      

 <colgroup>
    <col style="width:30px;"/>
    <col style="width:200px;"/>
    <col style="width:300px;"/>
    <col style="width:px;"/>
</colgroup>
<thead>
<tr>
    <th scope="col"><input type="checkbox" id="chkAllGrp" name="chkAllGrp" onclick="CommonUtil.chkAll('chkAllGrp','chkGrp')"/></th>
    <th scope="col">LINE</th>
    <th scope="col">ITEM</th>
</tr>
</thead>
<tbody>
<c:forEach items="${resultList.content}" var="result" varStatus="status">
  <tr>
    <td><input type="checkbox" id="chkGrp" name="chkGrp" value="${result.line}"/></td>
    <td style="cursor:pointer;" onclick="fnSelGrp('${result.line}', '${result.item}')">${result.line}</td>
    <td>${result.item}</td>
 </tr>
</c:forEach>

   <div class="area_btnA clfix mgB20">
        <a href="#" onclick="addInputBox();return false;" class="btnA"><strong>ADD</strong></a>
    </div>

我想要的是,当我点击ADD按钮时,显示数据行底部会出现一行新的文本输入框。 任何人都可以帮助我使用OnClick事件代码吗?

2 个答案:

答案 0 :(得分:1)

之类的,

function addInputBox(){
    jQuery('#myTable tr:last').after('<tr><input type="checkbox"  name="chkGrp" value=""/></tr><tr>your html content here</tr>');

}

#myTable是表格ID。

答案 1 :(得分:1)

尝试这样的事情

    function addInputBox(){
        var tr = '<tr>';
        tr += '<td><input type="text" id="mytextbox" name="mytextbox" value=""/></td>'
        tr += '<td></td><td></td>'
        tr += '</tr>'
        jQuery('#table_id').append(jQuery(tr));
    }