Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是代码,它现在正在做的是将数据添加到表中吗?这里是示例代码..我已经有了带有数据的表格..当我添加另一个项目时,它应该添加为第一行...现在它在现有数据之后添加..任何建议..
EDIT
利用$("#datatable").prepend(tr);
$("#datatable").prepend(tr);
演示
您必须使用prepend而不是append.
prepend
append
.prepend() 方法将指定的内容作为 jQuery 集合中每个元素的第一个子元素插入(要将其作为最后一个子元素插入,请使用 .append())。
利用
代替
$("#datatable").append(tr);
在第 12 行。
使用前置而不是附加。
工作演示