2

JavaScript プログラムに次のコード行があります

MyFrame.src = mainPath + "/resources/help.htm";

これがデフォルトですが、場合によっては、この iFrame のコンテンツを、次のように動的に作成する文字列でロードしたい場合があります。

"<html><head></head><body>This is additional help that was built dynamically on the fly</body></html>"

これを行う方法はありますか?

ありがとう

4

1 に答える 1

6

はい:

MyFrame.contentWindow.document.write("<html><head></head><body>This is additional help that was built dynamically on the fly</body></html>");
于 2012-09-14T21:16:22.413 に答える