jQuery实现html表格动态添加新行的方法?
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>
如何用在js文件里面写HTML?
1、将这一段代码保存到一个文件中。
2、注意,您可以任何文本工具创建js文件,不过您在保存的时候,需要将名字后缀名为.js。
3、这里将js文件保存为index.js。之后如果我们需要使用index.js。我们只需要调用即可,不需要再写新的js文件。
4、在html的head部分引入js文件,具体的代码。
5、这个引用是一个双标签,就算没有内容,也得写全。
6、如果您的js是从外面引入,那么您不能在<script></script>中间再写js代码。
7、如果有需要,那么您需要重新声明script标签,在标签内写您的js代码。
8、无论是javascript jquery都是一样的规则,必须在script标签内写代码。引入了js文件后,您可以在需要的地方直接调用即可。
js怎么引用jquery?
js是javascript语言的缩写,是前端脚本语言,可以对前端页面控件进行控制。jquery是前端技术框架之一,很多企业都采用jquery作为前端技术基础。在html页面上,用javascript标签引入jquery框架的入口文件,就可以引用jquery。非常简单的方式。