我第一次在 html 文档中使用 php include 命令,但由于某种原因它无法正常工作。
我使用 php include 的原因是因为我将几个 css、jquery 和 jv 文件链接到我的 html 文档。
我把所有这些链接都放在了我的其他 60 个 html 文档中。如果我必须更改或添加任何链接。在所有 60 个文档中都很难更改它。
所以我在我的 html 文档的最顶部使用了这样的 php 命令。
<?php
include("http://www.omenaa.ws/html/scripts.html");
?>
这就是我放在 scripts.html 文件中的内容
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type=
"text/javascript">
</script>
<script src="http://bxslider.com/lib/jquery.bxslider.min.js" type="text/javascript">
</script>
<link href="http://bxslider.com/lib/jquery.bxslider.css" rel="stylesheet" type=
"text/css" />
<link rel="stylesheet" type="text/css" href="http://www.omenaa.ws/css/slider.css" />
<script src="http://omenaa.ws/js/jquery.fitvids.js" type="text/javascript">
</script>
<script src="http://api.html5media.info/1.1.5/html5media.min.js" type=
"text/javascript">
</script>
<script type="text/javascript">
// <![CDATA[
$(function() {
$('.bxslider').bxSlider({
nextSelector: '#slider-next',
prevSelector: '#slider-prev',
infiniteLoop: false,
adaptiveHeight:true,
video:true,
nextText: 'Next - I am done!',
prevText: 'I need to go back'
});
});
// ]]>
</script>
<title></title>
</head>
<body>
</body>
</html>
我究竟做错了什么?