我想將選定的單選按鈕的名稱和一些div
元素數據傳遞給服務器,並在服務器端處理這些數據。如何處理Perl CGI中的元素值?
舉個例子,下面是我的CGI代碼。
use strict;
use CGI;
print
"Content-type:text/html\r\n\r\n",
"<html>",
"<body>",
"<div style='float:left'>",
"<input type='radio' name='selections' id='red'>",
"<input type='radio' name='selections' id='blue'>",
"<input type='radio' name='selections' id='green'>",
"</div>",
"<div style='float:left'>",
"<div style='float:left' id='redtime'>red time</div>",
"<div style='float:left' id='blutime'>blue time</div>",
"<div style='float:left' id='greentime'>green time</div>",
"</div>",
"<input type='button' value='clickme'/>",
"</body>",
"</html>";
在上述CGI文件我需要通過所選擇的單選按鈕的值id
和任何div
元素的數據的值。我如何在CGI中做到這一點?
您需要閱讀一些關於HTML表單:http://www.w3schools.com/html/html_forms.asp – alex