1
$(document).ready(function() {
$('#cont6').hide();
$('#cont5').hide();
$('#cont4').hide();
$('#cont3').hide();
$('#cont2').hide();
$('#cont1_a').click(function() {
$('#cont1').hide();
$('#cont2').fadeIn(1000, function() {
if ($.browser.msie && parseInt($.browser.version) == 7) {
this.style.removeAttribute('filter');
}
});
return false;
}); });
我有另一個超鏈接,需要做點擊時與上面相同的功能如何可以將點擊功能,以便我不需要重複代碼,我應該使用AND運算符的話,任何建議將高度讚賞如何使用jQuery的點擊功能
我會試試看 –