1 2 3 4 5 6 | Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl . "/js/common.js"); Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl . "/js/blog.js"); Yii::app()->clientScript->registerCssFile(Yii::app()->baseUrl . "/css/style.css"); |
1 2 3 4 5 6 7 | Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl . "/js/common.js", CClientScript::POS_END); CClientScript::POS_HEAD : the script is insertedinthe head section right before the title element. CClientScript::POS_BEGIN : the script is inserted at the beginning of the body section. CClientScript::POS_END : the script is inserted at the end of the body section. CClientScript::POS_LOAD : the script is insertedinthe window.onload()function. CClientScript::POS_READY : the script is insertedinthe jQuery's readyfunction. |
1 | Yii::app()->clientScript->registerCoreScript('jquery'); |
1 2 3 4 5 6 | $cs = Yii::app()->clientScript->registerCoreScript('jquery'); $cs->registerScript('abc', "$('#a').click(function(){ alert('aa'); })" ); |
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |