首页 > 语言 > JavaScript > 正文

jQuery实现html表格动态添加新行的方法

2024-05-06 16:20:59
字体:
来源:转载
供稿:网友

这篇文章主要介绍了jQuery实现html表格动态添加新行的方法,涉及jQuery鼠标事件及页面元素的操作技巧,需要的朋友可以参考下

本文实例讲述了jQuery实现html表格动态添加新行的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  6. <title>Add Row example</title> 
  7. <script src="jquery-1.6.2.min.js"></script> 
  8. <script type="text/javascript"
  9. <!-- jQuery Code will go underneath this --> 
  10. $(document).ready(function () {  
  11. // Code between here will only run when the document is ready 
  12. $("a[name=addRow]").click(function() { 
  13. // Code between here will only run  
  14. //when the a link is clicked and has a name of addRow 
  15. $("table#myTable tr:last").after('<tr><td>Row 4</td></tr>'); 
  16. return false
  17. }); 
  18. }); 
  19. </script> 
  20. </head> 
  21. <body> 
  22. <table style="width: 100%" id="myTable"
  23. <tr><td>Row 1</td></tr> 
  24. <tr><td>Row 2</td></tr> 
  25. <tr><td>Row 3</td></tr> 
  26. </table> 
  27. <a href="#" name="addRow">Add Row</a> 
  28. </body> 
  29. </html> 

希望本文所述对大家的jQuery程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选