我認爲它是一個非常基本的問題。我正在嘗試使用Perl CGI開發一個網頁。我的表單中有一個文本編輯器(使用iframe)。代碼:在Perl CGI腳本中捕獲iframe返回值
<iframe id="textEditor" style="width:500px; height:170px;background-color:white">
</iframe>
我試圖捕捉的內容,這是我在我的Perl CGI代碼的形式發佈的,採用PARAM功能的文本編輯器正在寫。但失敗!請幫助我。
有相關的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參數()函數寫在文本編輯器的值。
歡迎來到StackOverflow。爲了獲得最佳效果,請展示足夠的JavaScript和Perl代碼,以瞭解如何將iframe內容傳遞到服務器以及服務器腳本如何嘗試讀取它。 – mob