作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码:
<iframe id="uniqueId" frameborder="0" width="100%" height="100%"></iframe>
<script>
var iframeObject = document.getElementById("uniqueId");
var iframeContent = iframeObject.contentWindow.document;
iframeContent.open();
iframeContent.write("<?php echo $htmlString ?>");
iframeContent.close();
</script>;
我正在尝试插入用户生成的 HTML(元数据、 <html>
、 <head>
、 <body>
、 <script>
等),以字符串形式存储在 PHP 变量 $htmlString
中,进入 #uniqueId iframe 供浏览器/客户端渲染。
我很难找到安全转义/编码该 HTML 字符串以便在我编写的 JavaScript 中使用的正确方法。
在 PHP 方面,我尝试过 htmlspecialchars()
, htmlentities()
, json_encode()
,和一些简单的str_replace()
开启$htmlString
,但他们都没有做我需要做的事情。我有什么遗漏的吗?
最佳答案
我认为您应该将代码保存到文件中并通过 src 属性从另一个域加载它。
至少jsfiddle.net使用这种方式。
关于javascript - 如何对 HTML 的 PHP 字符串进行编码以供 JavaScript 函数用作字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46207467/
我是一名优秀的程序员,十分优秀!