$('#attachment-deletion').cloneNode(true);
IE 报告对象不支持此属性或方法
我该怎么办?cloneNode 是我对 IE8 无法识别 jquery 的克隆方法的解决方案,它甚至没有引发错误
$('#attachment-deletion').cloneNode(true);
IE 报告对象不支持此属性或方法
我该怎么办?cloneNode 是我对 IE8 无法识别 jquery 的克隆方法的解决方案,它甚至没有引发错误
cloneNode
是一种不适用于 jQuery 对象的原生 javascript 方法,您已经决定使用什么:
jQuery
$('#attachment-deletion').clone(true);
或纯 JS
document.getElementById('attachment-deletion').cloneNode(true);
编辑:如果需要,您还可以将普通 JS 与 jQuery 结合使用:
$('#attachment-deletion').get(0).cloneNode(true);
// or
$('#attachment-deletion')[0].cloneNode(true);