iframe 作为文本区域?
我的 HTML 页面中有一个 iframe
,如何才能使其充当 textarea
?
I have an iframe
in an HTML page, how can I cause it to act as a textarea
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置可内容编辑 属性为 true
设置或检索指示用户是否可以编辑对象内容的字符串。
安全警报:当 contentEditable 属性设置为 TRUE 时,用户可以更改网页的内容。错误地使用此属性可能会危及应用程序的安全性。 contentEditable 属性的错误使用可能包括不验证用户输入。如果您不验证用户输入,恶意用户可能会注入可能损害您的数据的控制字符或脚本。您应该采取常规预防措施,防止显示未经验证的用户输入。
另请参阅
使用 document.designMode 从 IE 转换应用程序到 Mozilla。
例如:
并在Content.htm页面中
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:
and in the Content.htm page