我是 PHP 新手。我想集成jquery 的 CDN。我已经将文件集成到我的索引中。php:
<script src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/js/cc_jquery.js" type="text/javascript"></script>
如何实现链接文件而不是文件路径?我将不胜感激!谢谢 :)
您可以将其直接包含在CDN
url 中。
<script src="http://codeorigin.jquery.com/jquery-2.0.3.min.js"></script>
或者,要从 php 中包含它,您可以执行以下操作:
echo "<script src='http://codeorigin.jquery.com/jquery-2.0.3.min.js'></script>";
jQuery 的 CDN: http: //codeorigin.jquery.com/