我有這種說法與笨:錯誤的觀點HTML渲染
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="<?php echo base_url();?>assets/bootstrap/css2/bootstrap.css"/>
<title>example</title>
</head>
<body>
<p>Hello</p>
</body>
</html>
而這個控制器:
<?php if (! defined('BASEPATH')) exit('No direct script access allowed');
class Merc_inicio extends CI_Controller {
function index()
{
$this->load->view('plantilla');
}
}
?>
所以在IE8和Firefox renderization是:
<html>
<head>
</head>
<body>
<link href="http://10.66.130.131/mercurio_p/assets/bootstrap/css2/bootstrap.css" type="text/css" rel="stylesheet"></link>
<title>
example
</title>
<p>Hello</p>
</body>
</html>
爲什麼頭標籤是beig renderized在身體標籤裏面? 我不知道發生了什麼事。你做?
那是你的問題?我沒有清楚地看到問題。你的問題到底是什麼? –
我不是一個PHP程序員,但我可以告訴你的href被計算並顯示相應的 – Rex
問題是:爲什麼頭標籤是在身體標籤內渲染的? – xgrager