var attachmentDeleteMainModal = $('#attachment-deletion');
var attachmentDeleteMainModalClone = attachmentDeleteMainModal.clone();
attachmentDeleteMainModalClone.attr('id', 'attachment-deletion-'+'main');
attachmentDeleteMainModalClone.insertAfter('#attachment-deletion');
此方法将我的新选择器添加到 Chrome 中的 DOM,但在 ie8 中不起作用,这是我到目前为止测试的全部
append
而不是insertAfter
不会在任一浏览器中创建所需的选择器。但在 ie8 中它根本不会创建任何东西
解决方案是什么?任何见解表示赞赏