Alternatives to iframe srcdoc?

后端 未结 3 1497
无人共我
无人共我 2020-12-14 03:29

Generally I am against the use of iframes, but it solved a particular problem of mine.

The thing is that I have a tinyMCE-editor at a webpage. After the user have ma

3条回答
  •  渐次进展
    2020-12-14 03:46

    Use the new Data URI Scheme. Example:

    var content = "";
    document.getElementById("my_iframe_id").src = "data:text/html;charset=UTF-8," + content;

提交回复
热议问题