我认为这是一个非常基本的问题。我正在尝试使用 Perl CGI 开发网页。我的表单中有一个文本编辑器(使用 iframe)。代码:
<iframe id="textEditor" style="width:500px; height:170px;background-color:white">
</iframe>
我正在尝试使用 param 函数捕获我在 Perl CGI 代码中提交表单时在文本编辑器中编写的内容。但是失败了!!请帮帮我。
有与iframe相关的代码:
<iframe id="textEditor" style="width:500px; height:170px;background-color:white">
</iframe>
<script type="text/javascript">
<!--
textEditor.document.designMode="on";
textEditor.document.open();
textEditor.document.write(\'<head><style type="text/css">body{ font-family:arial; font-size:13px; }</style> </head>\');
textEditor.document.close();
function def()
{
document.getElementById("fonts").selectedIndex=0;
document.getElementById("size").selectedIndex=1;
document.getElementById("color").selectedIndex=0;
}
function fontEdit(x,y)
{
textEditor.document.execCommand(x,"",y);
textEditor.focus();
}
-->
</script>
我正在尝试使用 CGI param() 函数捕获在文本编辑器中写入的值。