Is their any way to place content in IFRAME withou

2019-05-09 18:32发布

问题:

I have created a custom WYSIWYG editor for editing an XML file. I have used an <iframe> for this.
I have parsed the XML file and all the contents in a variable. How can I place this content in the <iframe>?
I tried this code but it is not working:

<iframe id="textbox"  style="width:300px; height:150px" >
     <?php echo $content ?>
</iframe>

Is their any javascript code for this.Thanks in advance.

回答1:

No. According to the W3C, the content of an <iframe> is only displayed by browsers that don't support frames.
There's a simple solution though: Every other element will work for you. Consider using a simple <div>.