jquery 淡入问题
$(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');
}
}
});
上面的脚本不起作用,任何人都可以告诉我它出了什么问题。谢谢
$(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');
}
}
});
The above script doesnt works, can any one tell me whats wrong with it . thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要更改下一行中使用的 ID,以不使用数字,因为
以数字开头的第一个字符 ID 无效。
You need to change the IDs used on the following line to not use numbers as the first character
IDs starting with numbers are invalid.