Tinymce CakePHP 2.0 JSHelper链接不会引发插件

Tinymce CakePHP 2.0 JSHelper链接不会引发插件,tinymce,cakephp-2.0,Tinymce,Cakephp 2.0,我正在尝试使用JS助手,如下所示: echo $this->Js->link( 'Incluir' , array('controller' => 'events', 'action' => 'add') , array( 'title' => 'Incluir' , 'update' => '#content-outer' , 'before' => $this->Js->get('#content-o

我正在尝试使用JS助手,如下所示:

echo $this->Js->link(
    'Incluir'
    , array('controller' => 'events', 'action' => 'add')
    , array(
'title'    => 'Incluir'
, 'update'   => '#content-outer'
, 'before'   => $this->Js->get('#content-outer')->effect('fadeOut', array('buffer' => false))
, 'success'  => $this->Js->get('#content-outer')->effect('fadeIn', array('buffer' => false))
)
);
结果就是这个ajax和下面的链接:

link: <a href="/bilheteria/events/add" id="link-473478646" title="Incluir">Incluir</a>
ajax: $j("#link-473478646").bind("click", function (event) {$j.ajax({beforeSend:function (XMLHttpRequest) {$j("#content-outer").fadeOut();}, dataType:"html", success:function (data, textStatus) {$j("#content-outer").fadeIn();$j("#content-outer").html(data);}, url:"\/bilheteria\/events\/add"});
为什么js->link的行为是这样的?i、 e.正确呈现ajax和链接,但当链接用于访问页面时,tinyMCE插件会断开吗

method - GET / POST / PUT
type - ‘json’
evalScripts - True / False