Home > Web Front-end > HTML Tutorial > 仿京东菜单栏求救_html/css_WEB-ITnose

仿京东菜单栏求救_html/css_WEB-ITnose

WBOY
Release: 2016-06-21 09:42:08
Original
888 people have browsed it

我想实现鼠标移动到一级栏目显示右边的菜单,目前鼠标移动到家用电器、床上用品、生活用品这引起标题都显示右边的菜单如何取消。

效果:
http://www.jinqiao2010.gov.cn/giftscool/sort.asp

代码如下:
nbsp;HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">


test


<script></script>
<script></script>







  set rs=server.CreateObject("adodb.recordset")
rs.open "select  * from bsort order by anclassidorder",conn,1,1
if rs.recordcount=0 then
response.write "
目前没有商品分类"
else
while not rs.eof
%>



                 set rs_s=server.CreateObject("adodb.recordset")
    rs_s.open "select * from ssort where anclassid=" & rs("anclassid") & " order by nclassidorder",conn,1,1
    if rs_s.recordcount=0 then 
    else
while not rs_s.eof
%>
            
              
     
   
               wend
    end if
%>
        


 
  
    set rs_s=server.CreateObject("adodb.recordset")
    rs_s.open "select * from ssort where anclassid=" & rs("anclassid") & " order by nclassidorder",conn,1,1
while not rs_s.eof%>


  


    
  
       set rs_x=server.CreateObject("adodb.recordset")
    rs_x.open "select * from xsort where nclassid=" & rs_s("nclassid") & " ",conn,1,1
while not rs_x.eof%>
rs_x.movenext
wend
%>  

  
     
  
  

rs_s.movenext
wend
%>




         rs.movenext
wend
end if
rs_x.close
set rs_x=nothing
rs_s.close
set rs_s=nothing

rs.close
set rs=nothing
%>




<script> <br /> $(".allsort").hoverForIE6({current:"allsorthover",delay:200}); <br /> $(".allsort .item").hoverForIE6({delay:150}); <br /> </script>



回复讨论(解决方案)

单独给 福利礼品 添加 hover 事件。

上面代码我是从一个网站下载来的。不知道怎么改,还请帮助

$(".allsort .item").hoverForIE6({delay:150});
这里改成 $(".allsort .item>span a").hoverForIE6({delay:150}); 试试

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template