在这里,我尝试用 JS 制作一个新文档:
objDoc.open();
objDoc.write( "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">" );
objDoc.write( "<html>" );
objDoc.write( "<body>" );
objDoc.write( "<head>" );
objDoc.write( "<title>" );
objDoc.write( document.title );
objDoc.write( "</title>" );
objDoc.write( jStyleDiv.html() );
objDoc.write( "</head>" );
objDoc.write( this.html() );
objDoc.write( "</body>" );
objDoc.write( "</html>" );
objDoc.close();
在我关闭文档之前(可能是在我将内存中的另一个文档的 html 写入新文档的正文之后),我想删除与某个类和/或 ID 匹配的任何元素。jQuery 解决方案还可以。有没有办法做到这一点?
谢谢!