100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > jQuery实现html表格动态添加新行的方法 – CSS – 前端 透明兼容iecss

jQuery实现html表格动态添加新行的方法 – CSS – 前端 透明兼容iecss

时间:2019-11-22 21:37:16

相关推荐

jQuery实现html表格动态添加新行的方法 – CSS – 前端 透明兼容iecss

jQuery实现动态添加行的方法

<script src=”jquery-1.6.2.min.js”></script>

<script type=”text/javascript”>

<!– jQuery Code will go underneath this –>

$(document).ready(function () {

// Code between here will only run when the document is ready

$(“a[name=addRow]”).click(function() {

// Code between here will only run

//when the a link is clicked and has a name of addRow

$(“table#myTable tr:last”).after(‘<tr><td>Row 4</td></tr>’);

return false;

});

});

</script>

</head>

<body>

<table id=”myTable”>

<tr><td>Row 1</td></tr>

<tr><td>Row 2</td></tr>

<tr><td>Row 3</td></tr>

</table>

<a href=”#” name=”addRow”>Add Row</a>

</body>

</html>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。