很抱歉发布了我以前的类似帖子,但我认为我的解释不好。
实际上,我有一个在 cakephp 视图中使用的 jquery 函数
这适用于给定的视图。
我希望能够通过传递参数(我希望运行 jquery 函数的 div 的 id)将此 jquery 函数与其他视图一起使用。
我的问题是,我需要在我的函数中进行哪些更改才能使其正常工作,以及如何从我的视图中调用它(请使用语法)。
我希望该站点的专家能提供帮助,我无法在文档中找到。
这是我的jQuery函数
$(function
{
// Hide the first cell for JavaScript enabled browsers.
//$('#link-data td:first-child').hide();
$('#moreWrapper ').hover(function ()
{
$(this).toggleClass('Highlight');
});
// run after page loads
$("#more").hide();
// Assign a click handler that grabs the URL
// from the first cell and redirects the user.
$('#moreWrapper ').click(function ()
{
$(this).toggleClass("active").next().slideToggle(100);
return false; //Prevent the browser jump to the link anchor
});
});