2

是否可以在 perl 的 here-doc 部分中包含 JQuery。我试过但没有成功。这是我的代码。

my $cgi = CGI->new();print header();print start_html("JQuery in perl");

print <<JS;
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script><!--
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
 });
});
//--></script>

<p>Click to hide</p>
<p>Click to hide</p>
<p>Click to hide</p>
</body>
JS
print end_html();

但是当我编写一个javascript函数时,它工作正常

my $cgi = CGI->new();print header();print start_html("hello");
print <<JS;
<script><!--
function show() {alert("Hello");}
//--></script>
<input type="button" value="Check"  onclick="show()">
</body>
JS
print end_html();

我在这里遗漏了一些明显的东西吗?请提出建议。

4

1 回答 1

6

here-doc 的工作方式类似于双引号字符串:评估变量。由于$(实际上是Perl 中的一个变量,它将被进程的真实组 ID 替换。用反斜杠转义它。

于 2013-04-11T21:06:07.923 回答