我一直在考虑在header.php文件中组织包含,脚本,CSS等的最佳方法,并且我已经提出了解决方案,但我不知道这是否是均匀的好还是不好。我想听听你关于此事的技巧。 我在考虑这样的事情: PS:还有更多的内容,但我不想充斥这个帖子。
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="scripts/bootstrap/bootstrap.js"></script>
<script src="scripts/jqplot/jquery.jqplot.min.js"></script>
<?php if($page_title == 'Home') echo'<script src="scripts/jqplot/jqplot.pieRenderer.min.js"></script>' ?>
<script src="scripts/global.js"></script>
<link rel="stylesheet" type="text/css" href="style/bootstrap/bootstrap.css">
<link rel="stylesheet" type="text/css" href="style/jqplot/jquery.jqplot.css">
<link rel="stylesheet" type="text/css" href="style/global.css">
<link rel="shortcut icon" href="images/logo_tab.png">
<title><?php echo $page_title; ?></title>
所以我的主要想法是将大多数可选包含放在一个小的PHP脚本中,哪个脚本会查看我们当前所在的页面,如果不需要那个特定的脚本,它就不会反映出来。这是一个可行的解决方案? 谢谢!