• 指定されたiframe要素の内部コンテンツを生成します。内部コンテンツのbody要素には指定されたHTML形式の文字列を挿入します。

    Parameters

    • param: {
          bodyContent: string;
          iFrameElement: HTMLIFrameElement;
      }

      パラメータ

      • bodyContent: string

        iframe内のbody要素

      • iFrameElement: HTMLIFrameElement

        iframe要素

    Returns void

    Example

    Mdc.insertIFrame({
    iFrameElement,
    bodyContent: '<h1>Example</h1>'
    });