我是 Jquery 的初学者,我找不到解决问题的方法。
在 cakephp 中,我有一个视图,我通过以下方式调用我的 jquery 脚本:
<?php echo $this->Js->click; ?>
jquery函数如下
$(function ()
{
$('#toogle-data').hover(function ()
{
$(this).toggleClass('Highlight');
});
$('#toggle-data').click(function ()
{
$("#more").hide();
$(this).toggleClass("active").next().slideToggle("normal");
});
});
这工作正常。
但是当我想传递参数时,它不起作用
在视图中,我将上述调用替换为
<?php echo $this->Js->click('#toggle-data'); ?>
我将我的 jquery 函数的第一行更改为如下
$(function (x)
我收到以下消息
JsHelper:: Missing Method click is undefined [CORE\Cake\View\Helper\JsHelper.php
谢谢你的帮助