1
我正在用模塊CGI.pm寫Perl/CGI腳本。我可以返回文本/ html,但不能在其中包含圖像,它始終顯示'alt'標記,我確信href鏈接。CGI.pm:包含圖像?
這裏是我的代碼:
#!/usr/bin/perl -w
use strict;
use CGI;
my $cgi = new CGI;
print $cgi->header(-type=>'text/html'),
$cgi->start_html(-title=>'Test Page'),
$cgi->h1('Infos switch'),
"This is a test.",
$cgi->h1('Testing'), $cgi->hr, "\n",
$cgi->img(-src=>'http://www.perl.org/simages/lcamel.gif',
-alt=>'Powered by Perl'), "\n\n",
$cgi->end_html;
exit;
非常感謝夥計,我可以顯示圖片:)我現在必須格式化我所有的圖片在瀏覽器上創建我的開關... – eouti 2011-04-20 07:29:09
@eouti - 請接受他的回答! – 2011-04-20 18:53:44
好的srry夥計,我不知道投票社區,不知道我們必須投票。 – eouti 2011-04-21 12:54:34