我想知道如何让我的 iFrames 内容 (html) 更新为来自 textarea 的代码并在其周围添加 php 标签以使其实际出现。
代码:
$("#iframehtml").contents().find("html").html(editor.doc.getValue());
让我们说例如 editor.doc.getValue() 等于:
$var = "Test";
print $var;
它应该在屏幕上打印“测试”。
我想知道如何让我的 iFrames 内容 (html) 更新为来自 textarea 的代码并在其周围添加 php 标签以使其实际出现。
代码:
$("#iframehtml").contents().find("html").html(editor.doc.getValue());
让我们说例如 editor.doc.getValue() 等于:
$var = "Test";
print $var;
它应该在屏幕上打印“测试”。