如何根据URL实现jQuery? (PHP)

时间:2012-08-03 02:38:49

标签: php jquery html head

当我访问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>

1 个答案:

答案 0 :(得分: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文件的位置。