我正在尝试使用 Codeigniter 从我的控制器加载视图。我将索引页面设为表单,然后将其提交给不同的控制器。它应该在一些条件语句之后显示视图,但是当视图加载时,通常的 CSS 已更改。
原来的
body {
background-image: url("/images/layouts/body-bg.gif");
background-repeat: repeat;
font-family: "Montserrat", Arial,sans-serif;
color: #404041;
line-height: 18px;
font-size: 12px;
font-size: 0.75rem;
text-shadow: 0 0 1px rgba(64, 64, 65, 0.2);
}
正在加载的 css
<!DOCTYPE html>
<html lang="en">
<head>
<title>404 Page Not Found</title>
<style type="text/css">
::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
::webkit-selection{ background-color: #E13300; color: white; }
我不知道为什么会这样,我在控制器中加载视图的方式是:
if(//condition)
{
$this->load->view('view_2');
}
有没有办法阻止我的 css 加载 html 错误?我正在使用默认设置的 Codeigniter 2.1.4。