$('#btFrame').hide(); $('#btFrame').show();
上面脚本在IE10一下功能失效,解决方法如下:
方法一:
$('#btFrame').hide(0); $('#btFrame').show(0);
方法二:
$('#btFrame').css('visibility','hidden'); $('#btFrame').css('visibility','visible');