headMeta()?>
headTitle() ?>
headLink() ?>
headStyle() ?>
headScript() ?>
qian tai mo ban yi
layout()->content ?>
我们可以在Action中这样写
$this->view->headLink()->appendStylesheet('/css/site/photo.css');
$this->view->headMeta()->appendName('author', 'dxk')
->appendName('keywords','杜晓孔,dxk');
$this->view->headScript()->appendFile("/js/site/diary.js");
我们可以在视图里边这样写
$this->headStyle()->captureStart();
?>
#content{border-bottom:1px solid #BBB; background:#FFF;}
……
$this->headStyle()->captureEnd();
?>
$this->headScript()->captureStart();
?>
var loginName = document.getElementById("loginName");
……
$this->headScript()->captureEnd();
?>