简体   繁体   English

如何在iframe跨浏览器中使textarea工作?

[英]How do I make a textarea work in an iframe cross-browser?

I'm using the following code and the textarea appears, but I can't edit the text in the textarea or even get a blinking cursor to show in Firefox: 我正在使用以下代码,并且出现了textarea,但是我无法编辑textarea中的文本,甚至无法使光标闪烁以在Firefox中显示:

<iframe contentEditable='true'; src="you.php"></iframe>

"you.php" is: “ you.php”是:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head></head>
<body>
<textarea contentEditable='true';>the text.</textarea>
</body>
</html>

You don't need contentEditable to edit the contents of a textarea. 您不需要contentEditable来编辑文本区域的内容。 Try this: 尝试这个:

<iframe src="you.php"></iframe>

you.php: you.php:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head></head>
<body>
<textarea>the text.</textarea>
</body>
</html>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM