本教程操作环境:windows10系统、jquery3.2.1版本、Dell G3电脑。
jquery怎么增加列
append() 方法在被选元素的结尾(仍然在内部)插入指定内容。
语法
$(selector).append(content)
content必需。规定要插入的内容(可包含 HTML 标签)。
使用函数在指定元素的结尾插入内容。
$(selector).append(function(index,html))
function(index,html)必需。规定返回待插入内容的函数。
示例如下:
123 <script src="js/jquery.min.js"></script><script>function addCol() { $col = $("增加的列 "); $("tr").append($col); } </script>
Month | Savings |
---|---|
January | $100 |
January | $100 |
January | $100 |
输出结果:
相关视频教程推荐:jQuery视频教程
以上就是jquery怎么增加列的详细内容,更多请关注php中文网其它相关文章!