我是PHP的新手。我想整合 jquery的CDN 。 我已经将文件集成到我的索引中。 PHP:
<script src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/js/cc_jquery.js" type="text/javascript"></script>
如何实现链接文件而不是文件路径? 我非常感激!谢谢:))
答案 0 :(得分:0)
您可以直接将其与CDN
网址包含在内。
<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/