iframe 作为文本区域?

发布于 2024-08-05 01:40:54 字数 73 浏览 2 评论 0原文

我的 HTML 页面中有一个 iframe,如何才能使其充当 textarea

I have an iframe in an HTML page, how can I cause it to act as a textarea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最冷一天 2024-08-12 01:40:54

设置可内容编辑 属性为 true

设置或检索指示用户是否可以编辑对象内容的字符串。

安全警报:当 contentEditable 属性设置为 TRUE 时,用户可以更改网页的内容。错误地使用此属性可能会危及应用程序的安全性。 contentEditable 属性的错误使用可能包括不验证用户输入。如果您不验证用户输入,恶意用户可能会注入可能损害您的数据的控制字符或脚本。您应该采取常规预防措施,防止显示未经验证的用户输入。

另请参阅

使用 document.designMode 从 IE 转换应用程序到 Mozilla。

例如:

<IFRAME id="txtContent" name="txtContent" src="Content.htm"</IFRAME>

并在Content.htm页面中

<script language="javascript">
    function InitializeIFrame()
    {               
        document.body.contentEditable = true;               
    }
</script>

<body onload="InitializeIFrame();">

</body>

set contenteditable property to true

Sets or retrieves the string that indicates whether the user can edit the content of the object.

Security Alert: Users can change the contents of a Web page when the contentEditable property is set to TRUE. Using this property incorrectly can compromise the security of your application. Incorrect use of the contentEditable property might include not validating user input. If you do not validate user input, a malicious user can inject control characters or script that can harm your data. You should take routine precautions against displaying unvalidated user input.

Also take a look at

Converting an app using document.designMode from IE to Mozilla.

Eg:

<IFRAME id="txtContent" name="txtContent" src="Content.htm"</IFRAME>

and in the Content.htm page

<script language="javascript">
    function InitializeIFrame()
    {               
        document.body.contentEditable = true;               
    }
</script>

<body onload="InitializeIFrame();">

</body>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文