我正在尝试在我的应用程序上使用 JsHelper::event 方法,使用与 CookBook 相同的代码:
$this->Js->get('#element');
$ev = $this->Js->event('click', $this->Js->alert('hey you!'));
我尝试运行debug($ev)
,但它返回null
。在控制器中,我添加了这样的助手:
var $helpers = array('Js' => array('Jquery'));
如何让 JsHelper::event 正常工作?