Js 如何通过按钮点击新增一个整个表格的,有找到新增一行用来上传这样类似的。

Js 如何通过按钮点击新增一个整个表格的,有找到新增一行用来上传这样类似的。,第1张

给你两个办法.

1.把表格预先写好,然后设置为隐藏的属性.当onclick后,就吧这个属性修改未可见

2.使用<div id="table"></div>onlick后, document.getElementById("table").innerHTML("<table>.......

</table>")

当然,你可以用js的框架...例如jquery去插入,更快捷,更方便

<html>

<head>

<title>test</title>

<meta http-equiv="content-Type" content="text/htmlcharset=utf-8">

<script src="jquery-1.7.2.min.js"></script>

<script type="text/javascript">

$(function(){

$('#addBtn').click(function(){

$('#tab').after($('#tab').clone(true))

})

$('#delBtn').click(function(){

if($('.tab_css').length >1)//保留第一个

$('.tab_css:last').remove()

})

})

</script>

<body>

<button id="addBtn">addTable</button>

<button id="delBtn">removeTable</button>

<table id="tab" width="98%" border="0" cellpadding="0" cellspacing="1" class="tab_css">

<tr>

<td width="135" height="27">日期:</td>

<td width="254" height="27"><input name="Update" type="text"></td>

<td width="67" height="27">贷方:</td>

<td width="271" height="27"><input name="huofang" type="text"></td>

<td width="99" height="27">付款方式:</td>

<td width="379" height="27">

<select size="1" name="Payment">

<option value="">请选择</option>

<option value="未付">未付</option>

<option value="电汇">电汇</option>

<option value="支票">支票</option>

</select></td>

</tr>

<tr>

<td>发票编号:</td>

<td><input name="fapiao" type="text"/> </td>

<td>借方:</td>

<td width="767" colspan="3"><input name="jiefang" type="text" /> </td>

</tr>

<tr>

<td height="41"></td>

<td colspan="5" align="left"height="41" width="1097">

<input name="submit" type="submit" value=" 确认提交 "> <input name="reset" type="reset" value=" 重新填写 ">

 </td>

</tr>

</table>

</body>

</html>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11528584.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-16
下一篇 2023-05-16

发表评论

登录后才能评论

评论列表(0条)

保存