我正在构建一个可以嵌入其他站点的小部件。该小部件是使用创建的 iframe,document.write()
但我不知道如何使用 javascript 应用 iframe 文档类型。
这是我的代码:
document.write("<iframe scrolling=\"no\" frameborder=\"0\">");
document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">");
document.write("<html>");
document.write("<head></head><body></body>");
document.write("</html>");
document.write("</iframe>");
document.write("</div>");
iframe 已创建,但我未应用 doctype。有没有办法做到这一点?
谢谢