无法使用引导程序加载图像

时间:2016-09-16 10:44:59

标签: twitter-bootstrap

我用JSF 2.2和Primefaces 5创建了一个项目。 现在我想将Bootstrap 3.3.7集成到我的项目中,所以我添加了这些文件: Bootstrap Files

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:p="http://primefaces.org/ui"
      xmlns:ui="http://java.sun.com/jsf/facelets"> 
	<h:head>
    	<f:facet name="first">
        	<meta content='text/html; charset=UTF-8' http-equiv="Content-Type"/>
            <meta name="viewport" content="width=device-width, initial-scale=1" />
	        <meta http-equiv="X-UA-Conpatible" content="IE=edge" />
            <h:outputStylesheet library="css" name="bootstrap.min.css"></h:outputStylesheet>
            <title>SARSOURA | Example</title>
		</f:facet>
        <link rel="shortcut icon" type="image/x-icon" href="#{resource['icons/hki2.gif']}"/>
    </h:head>
	<body>
	
		  <div class="container">
		    <div class="row">
		        <div class="col-xs-3">
		            <a href="#" class="thumbnail">
		                <img src="b.jpg" alt="125x125"/>
		            </a>
		        </div>
		        <div class="col-xs-3">
		            <a href="#" class="thumbnail">
		                <img src="b.jpg" alt="125x125"/>
		            </a>
		        </div>
		    </div>
		  </div>
	
	</body>
</html>

运行项目后,出现以下页面而不显示图像a.jpg和b; jpg。 你有没有想过要解决这个问题。谢谢。

1 个答案:

答案 0 :(得分:0)

它不依赖boostrap,它与HTML代码链接:

使用此:

<img src="your-locate-image-path" alt="your-description-image" />