我有一个非常基本的点击功能,它有一些功能:
$('#one').click(function() {
slider();
$(this).css({'background-image':'url(img/circle_c.png)'});
$('#two, #three').css({'background-image':'url(img/circle.png)'});
$content.cycle(0);
return false;
});
现在我想在另一个点击功能上触发这个点击功能。我的意思是,一旦我按下另一个当前看起来像这样的点击功能:
$mario.on('click', this, function() {
var l = 0,
row = 8;
$(this).addClass('active');
// and some other functions
});
第一个点击功能也会触发。你们有谁知道如何做到这一点。我想复制和粘贴#one
clickfunction的内容不是必需的。
干杯