0
我想要這樣創建iframe。但我沒有。這是可能創建這樣的iframe嗎?
<iframe>
<html>
<style>/* codes */</style>
<script type="javascript">/* codes */</script>
</html>
<body>
Welcome!!
</body>
</iframe>
PHP代碼:
function prew($html, $css, $js) {
$iframe .= '<iframe>';
$iframe .= '<html>';
$iframe .= '<head>';
$iframe .= '<style>' . $css . '</style>';
$iframe .= '<script>' . $js . '</script>';
$iframe .= '<script src="http://code.jquery.com/jquery-2.1.1.min.js" type="text/javascript"></script>';
$iframe .= '</head>';
$iframe .= '<body>';
$iframe .= $html;
$iframe .= '</body>';
$iframe .= '</html>';
$iframe .= '</iframe>';
return $iframe;
}
如果我用這個,它不工作。爲什麼它不起作用? 如何根據需要創建iframe?我搜索了更多次,但我找不到有關這種情況的任何信息
哪裏是你的調用部分?簡要定義*不工作*。 – Rikesh
'
我看不到'prev'函數被調用... – fredrik