Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/73.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何使用jquery在IE6中显示隐藏消息?_Jquery_Css_Xhtml_Internet Explorer 6_Cross Browser - Fatal编程技术网

如何使用jquery在IE6中显示隐藏消息?

如何使用jquery在IE6中显示隐藏消息?,jquery,css,xhtml,internet-explorer-6,cross-browser,Jquery,Css,Xhtml,Internet Explorer 6,Cross Browser,这个站点显示“跳到内容”或第三个选项卡,但这个选项卡在IE6中没有显示,我已经使用jquery,所以我需要jquery解决方案在IE6中显示这个选项卡,就像在IE7和firefox中一样 我想在我的客户端站点中使用相同的东西。与jQuery等价的东西如下所示: $(function() { $('#skip').hover( function() { $(this).attr('background', '#fc3 url(/files/theme/a-01.gif) no-repe

这个站点显示“跳到内容”或第三个选项卡,但这个选项卡在IE6中没有显示,我已经使用jquery,所以我需要jquery解决方案在IE6中显示这个选项卡,就像在IE7和firefox中一样


我想在我的客户端站点中使用相同的东西。

与jQuery等价的东西如下所示:

$(function() {
  $('#skip').hover(
    function() { $(this).attr('background', '#fc3 url(/files/theme/a-01.gif) no-repeat center bottom'); },
    function() { $(this).attr('background', ''); }
  );
});
然而,如果简单的CSS解决方案在IE6中不起作用,那么布局可能有问题。然后,更改元素的显示方法将无济于事。

或此网站: