我在 ajax 上添加记录时遇到问题,该记录与其他两个 ajaxified 链接呈现部分以进行编辑和删除。但我得到 jquery 不是函数的错误。
通过在网上搜索解决方案,我得到了以下信息。将第四个参数设为 true 并注册脚本。
$this->renderPartial("_part", array('parms' => $model), false, true);
为了注册一个脚本,我在主视图文件中添加了以下行。
<?php Yii::app()->clientScript->registerScript("jquery"); ?>
在图书馆里它说。
public CClientScript registerScript(string $id, string $script, integer $position=NULL)
从上面的行我知道 id 必须是脚本标签的 id。喜欢;
<script id="someid"></script>
. 但我无法获得第二部分,因为我想注册主页脚本标签中的 js。
我该怎么做呢?