我正在使用 Yii,我想在我的视图中渲染一些 javaScript 文件,我可以使用以下代码渲染它们
Yii::app()->clientScript->registerScriptFile(Yii::app()->request->baseUrl . '/protected/components/js/ForCreatePage.js',CClientScript::POS_HEAD);
Yii::app()->clientScript->registerScriptFile(Yii::app()->request->baseUrl . '/protected/components/js/createPageReady.js',CClientScript::POS_READY);
但是当我尝试使用其中的函数或使用准备好的文件时,代码什么也不做
ForCreatePage 的部分文件:
function link_to_generated(data) {
alert($(data).find('ff_result').text());
}
创建页面就绪:
(function() {
amount_of_pages = 1;
$("#for-movie").css('width',(($('#for-movie-container-2').width()-10)+'px'));
... // more code inside the file
});