我试图将用户选择tr
移到表格的开头:
$(this).closest('tr').insertBefore($('#TableBody').find('tr:first'));
我不知道为什么它不会工作!在我的示例http://jsfiddle.net/52VtD/5207/中,该表的作用类似于下拉列表。如果用户然后点击Auswählen
选择了一个选项,则应在表格中插入tr
作为第一个tr
!
感谢您的帮助
答案 0 :(得分:0)
你可以尝试 -
$('#TableBody').prepend($(this).closest('tr'));
答案 1 :(得分:0)
使用 prepend() 或者可以尝试 prependTo()
by prepend()
$('#TableBody').prepend($(this).closest('tr'));
通过 prependTo()
$(this).closest('tr').prependTo($('#TableBody'));