我有一个在用户单击链接时触发的函数。当他们点击另一个链接时,我想更改他们点击的第一个链接。我该怎么做呢?这是我到目前为止所拥有的:
$('a').click(function(){
//some code ...
if ( $(this).attr('id') != last.attr('id') ) {
$('a').click(function()
/*the original $this*/.parent().parent().quickFlipper({refresh: 0});
/*the original last*/.parent().parent().quickFlipper({refresh: 0});
});
var that = this;
var that2 = last;
setTimeout(function(){
$(that).parent().parent().quickFlipper({refresh :0});
$(that2).parent().parent().quickFlipper({refresh :0});
}, 1500);
//some more code ...
});
在此先感谢您,如果您不确定我要完成的工作,请提出任何问题。