0

当我访问http://www.mysite.com/local/examplepage/example.php时,我需要实现 jQuery 。当 URL 等于http://www.mysite.com/local/http://www.mysite.com/local/anything **时,我还需要实现 jQuery 。

我该怎么做?

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js"></script>
4

1 回答 1

2

使用此代码:

<?php if (stripos($_SERVER['REQUEST_URI'],'/local/') !== false) {echo '<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js"></script>';} ?>

其中 /local/ 是将在其上实现 jquery 的 url 位置。而https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js是您的 jquery 文件的位置。

于 2012-08-03T02:38:49.390 回答