最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Can cgi's start_html() method have multiple -script attributes? - Stack Overflow

programmeradmin2浏览0评论

I think the question is pretty self explanitory, but I'm using perl to generate a webpage. Starts off using:

$cgi->start_html(-title=>'myPage',-style=>{-src=>'style.css'},  -script=>{-type=>'JAVASCRIPT', -src=>'custom.js'}, );

List item

But what if I want to have multiple scripts in the the header? Or Multiple CSS style sheets?

<script type="text/javascript" src=".5.2/jquery.min.js"></script>
<script type="text/javascript" src="custom.js"></script>
<link rel="stylesheet" href="css/basic.css" type="text/css" />
<link rel="stylesheet" href="css/style.css" type="text/css" />

I think the question is pretty self explanitory, but I'm using perl to generate a webpage. Starts off using:

$cgi->start_html(-title=>'myPage',-style=>{-src=>'style.css'},  -script=>{-type=>'JAVASCRIPT', -src=>'custom.js'}, );

List item

But what if I want to have multiple scripts in the the header? Or Multiple CSS style sheets?

<script type="text/javascript" src="http://ajax.googleapis./ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="custom.js"></script>
<link rel="stylesheet" href="css/basic.css" type="text/css" />
<link rel="stylesheet" href="css/style.css" type="text/css" />
Share Improve this question asked Aug 15, 2011 at 21:08 Atey1Atey1 2513 silver badges10 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

Use anonymous array:

$cgi->start_html(
  -title=>'myPage',
  -style=>[{-src=>'style.css'},{-src=>'basic.css'}],
  -script=>[{-type=>'JAVASCRIPT', -src=>'custom.js'},{-type=>'JAVASCRIPT', -src=>'http://ajax.googleapis./ajax/libs/jquery/1.5.2/jquery.min.js'}],
);

Of course. When you think more than one, think array. When you think passing arrays as arguments, think array ref.

use warnings;
use strict;
use CGI qw(:standard);

print start_html(-title => "myPage",
                 -style => [ {-src=>"style.css"},
                             {-src=>"basic.css"}, ],
                 -script => [ {-type=>"text/javascript",
                               -src=>"custom.js"},
                              {-type=>"text/javascript",
                               -src=>"ohai.js"}, ], );

__END__

…snip…
<title>myPage</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="basic.css" />
<script src="custom.js" type="text/javascript"></script>
<script src="ohai.js" type="text/javascript"></script>
…snip…
发布评论

评论列表(0)

  1. 暂无评论