他のサイトに埋め込むことができるウィジェットを作成しています。ウィジェットは を使用して作成された iframe ですが、document.write()
javascript を使用して iframe doctype を適用する方法がわかりません。
これが私のコードです:
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 は適用されません。これを行う方法はありますか?
ありがとう