gpt4 book ai didi

javascript - 如何制作点击按钮时的文本输入框

转载 作者:行者123 更新时间:2023-12-02 18:04:10 24 4
gpt4 key购买 nike

我有一个表格(包括复选框),其中的数据如下。并且有“添加”按钮。

<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>

我想要做的是,当我单击“添加”按钮时,显示数据行的底部会出现一行新的文本输入框。谁能帮我处理 OnClick 事件代码?

最佳答案

类似,

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

}

#myTable 是表 ID。

关于javascript - <JSP/JQuery> 如何制作点击按钮时的文本输入框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20259253/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com