dtnat7146 2015-08-12 07:21
浏览 30
已采纳

无法加载标头php文件的样式和脚本[重复]

This question already has an answer here:

This is how my header.php looks like;

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" type="text/css" href="headerStyle.css">
    <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.2.min.js"></script>
    <script src="headerScript.js"></script>
<?php

if( strpos($_SERVER['PHP_SELF'], 'index') ){
    echo '<title>My website title</title>';
    echo '<link rel="stylesheet" type="text/css" href="index.css">';
    echo '<script src="index.js"></script>';
}
if( strpos($_SERVER['PHP_SELF'], 'index') ){
    echo '<title>Contact Us</title>';
}//And goes on like this..

?>

</head>

header.php,headerStyle.css,headerScript.js are in same folder : mysite/header/

And this how my index.php looks like;

<?php 
include 'header/header.php';  
    //And some other irrelevant stuff (<body> etc.)
?>

My index file's path is mysite/

The problem is when I view the index page it cannot load headerStyle.css and headerScript.js.

What is the best way to manage that?I'm trying to make a solid,dynamic header.php so i can include it for every page in my site.

</div>
  • 写回答

1条回答 默认 最新

  • donglie7778 2015-08-12 07:40
    关注

    You can define a constant and make use of __DIR__ magic constant.

    define('HEADER',__DIR__.'/');
    
    <link rel="stylesheet" type="text/css" href="<?php echo HEADER; ?>headerStyle.css">
    <script src="<?php echo HEADER; ?>headerScript.js"></script>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?