当我访问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>
答案 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文件的位置。