|
我参照大家之前的方案对iframe进行了设置,在ie6下可以正常显示,但是在搜狗高速下就是白板,不知道大家有没有遇到过同样的问题,求解决~
代码片段如下
class Candidate extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->helper('url');
$this->load->helper('form');
}
function index()
{
$this->load->view('test');
}
}
<iframe id="main" style="WIDTH: 870px; HEIGHT: 100%;" name="main"
src="<?=base_url();?>index.php/candidate/index/"
frameborder="0"></iframe>
|
|