$(document).ready(function() {
$('#1a,#2a,#3a,#5a,#6a').click(show_hide);
function show_hide() {
// function logic
$('#cont6').hide();
$('#cont5').hide();
$('#cont4').hide();
$('#cont3').hide();
$('#cont2').hide();
$('#cont1').fadeIn("slow");
if ($.browser.msie && parseInt($.browser.version) == 7) {
this.style.removeAttribute('filter');
}
}
});jquery淡入淡出
上述腳本不起作用,任何人都可以告訴我它最近有什麼問題。感謝
它會怎麼做,如果它工作? – kapa
:(請不要使用一個數字作爲您的DOM ID中的第一個字符... – Neal
welll點擊該ID會隱藏頁面上的內容在上面寫的id內,ok會將id從數字更改爲其他內容 –