非常に基本的な質問だと思います。PerlCGIを使用してWebページを開発しようとしています。フォームにテキストエディタ(iframeを使用)があります。コード:
<iframe id="textEditor" style="width:500px; height:170px;background-color:white">
</iframe>
param関数を使用して、PerlCGIコードのフォームの送信時にテキストエディターで書き込んでいるコンテンツをキャプチャしようとしています。しかし失敗!私を助けてください。
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()関数を使用してテキストエディタで記述された値をキャプチャしようとしています。