0
$iframes = $doc->getElementsByTagName('iframe');
foreach ($iframes as $iframeViejo) {
$iframeMainn = $doc->createElement('iframe');
$iframeNuevo->setAttribute('src', $iframeViejo->getAttribute('src'));
$iframeNuevo->setAttribute('width','560');
$iframeNuevo->setAttribute('height','615');
$figureNuevo = $doc->createElement('figure');
$figureNuevo->setAttribute('class','op-interactive');
$figureNuevo->appendChild($iframeNuevo);
$iframeViejo->parentNode->replaceChild($figureNuevo, $iframeViejo);
}
,但我想添加另一個iframe標籤,因爲我想這樣的輸出:如何添加另一個HTML標籤
<figure class="class"><iframe><iframe src="src" width="xxx" height="xxx"></iframe><iframe></figure>
請你幫我
輸出通過對循環添加的I幀,然後分別?你在問什麼? –
是的,我需要添加另一個iframe – skycomputer2
什麼對象是$ iframeNuevo –