$('form table tbody').children()[2].after(deadlineTr)页面直接展示html源码。说明after会不生效正确方法:不使用childNode
$('form table tbody tr').eq(2).after(deadlineTr);