#1 jiayan41
http://work.areen.cn/index.php/page/writejake先看一下这个页面,请用IE浏览器查看,因为FF下一切正常
再看 http://work.areen.cn/index.php/page/index
使用smarty后页面CSS样式就失效了
如果上面两个还不明显,我再给你一个对比
http://work.areen.cn/index.php/post/write 分类解决方案那里使用了到smarty显示
http://work.areen.cn/index.php/user/write 这个是没有使用smarty显示PHP数据的
我的speedphp代码都是这样写的
---------------------------------------
php: function index(){ // 这里是首页
$this->tpl_title = "文章管理";
$this->contents = "文章管理";
$conditions = array("type" => 'post');
$this->results = spClass("lib_contents")->findAll($conditions);
$this->display("admin/post_index.html");
}
---------------------------------------
smarty: post_index.html
<{foreach from=$results item=one}>
<{/foreach}>
IE下经常的刷新后不显示,CSS样式失效,我已经搞了一个晚上了,看看你有没有遇到这样的问题。
2010-04-26 02:11:01