圖像沒有出現在我的本地主機上。這裏是HTML代碼。我試過幾種變化來顯示te圖像。使用Twitter Bootstrap。任何幫助將不勝感激。圖像沒有出現在本地主機上
<div class="media">
<a class="pull-left" href="">
<img class="media-object" src="/img/grads.jpg/64x64">
</a>
<div class="media-body">
<h4 class="media-heading">Collaborate with students at other Universities</h4>
<p>Join your classes and work with other students on studying without having to meet up.</p>
</div>
</div>
<div class="media">
<a class="pull-left" href="">
<img class="media-object" src="grads.jpeg/64x64">
</a>
<div class="media-body">
<h4 class="media-heading">Meet new friends you're in class with</h4>
<p>Pick who you want to be a stranger in your own classes. School is social and so is moreo. :)</p>
</div>
</div>
這裏是CSS代碼。不知道我做錯了什麼。
<link href="../assets/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 10px;
padding-bottom: 20px;
}
/* Custom container */
.container-narrow {
margin: 0 auto;
max-width: 700px;
}
.container-narrow > hr {
margin: 30px 0;
}
/* Main marketing message and sign up button */
.jumbotron {
margin: 30px 0;
text-align: center;
}
.jumbotron h1 {
font-size: 72px;
line-height: 1;
}
.jumbotron .btn {
font-size: 15px;
padding: 10px 20px;
}
/* Supporting marketing content */
.marketing {
margin: 5px 0;
}
.marketing p + h4 {
margin-top: 14px;
}
</style>
<link href="../assets/css/bootstrap-responsive.css" rel="stylesheet">
您能夠通過IP查看映像?什麼是圖像路徑末尾的/ 64x64? – muneebShabbir 2013-04-09 05:37:37
如果您使用的是Chrome或Firebug,您是否看到爲圖像文件發送的HTTP請求,如果有,是否返回? – Anthony 2013-04-09 05:40:02
另外,當你說本地主機,你的意思是一個本地的LAMP堆棧,或者你的意思是隻有html的文件://方案?即使使用上述代碼 – Anthony 2013-04-09 05:41:38