这可能是关于我在自学 html 中没有学到的东西的基本问题。在我的 index.html 中,我有一个 div 调用 php 文件,如下所示:
<div id="portafolio" />
<p class="first">Portafolio</p>
<p class="second">Estos son algunos de nuestros proyectos.</p>
<?php include 'portafolio.html'; ?>
<!-end #portafolio ->
</div>
在 php 文件中,有一些 javascript 和更多 div 标签,如下所示:
<script type='text/javascript'>
$(document).ready(function(){
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
});
</script>
<div class="fadehover">
<img src="images/motmotcoffee/motmotcoffee_1BW.jpg" alt="" class="a" />
<img src="images/motmotcoffee/motmotcoffee_1.jpg" alt="" class="b" />
</div>
我希望从 php 文件中打印出来的 html 包含在其中,其中包含在 CSS 中定义的顶部和底部边框,但它没有。我究竟做错了什么?