我需要这样做:
var tempDoc;
$(tempDoc).load('<html>' + $(document).find('html').html() + '</html>');
然后这样做:
$('body', tempDoc).css('background-color', '');
但是,当我这样做时,背景色去除也会影响 $(document)。有没有办法将 $(document) 转储到临时变量中并更改其中的元素而不影响 $(document) 本身?
请让我知道这是否有意义。