
jQuery
残剑破空落飞雪
这个作者很懒,什么都没留下…
展开
-
Jquery鼠标hover移入移出事件
鼠标放在元素上移入移出。$(function() { $(".top_weixin").hover(function() { $(".topWeixinPic").fadeIn(300); }, function() { $(".topWeixinPic").fadeOut(300); }); });原创 2018-07-09 12:25:39 · 2677 阅读 · 1 评论 -
键盘和鼠标事件中按键的数字是多少呢?event.which
event.which针对键盘和鼠标事件,这个属性能确定你到底按的是哪个键。<!DOCTYPE html><html><head> <script src="https://code.jquery.com/jquery-latest.js"></script></head><body>原创 2018-07-03 18:43:13 · 872 阅读 · 0 评论 -
JQuery实例:可以编辑的表格
HTML代码:<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head> <title>JQuery实例2:可以编辑的表格</title> &转载 2018-07-03 18:52:03 · 404 阅读 · 0 评论 -
jQuery下来菜单,鼠标移动到下拉菜单就会消失的解决方法
给MORE文件添加.hover()后给下拉菜单也加上.hover()即可。$(function() { $("#navMore").hover(function() { $(".top_header__more_dropdown").show(); }); $("#top_header__more_dropdown").hover(function() { $(this).show(...原创 2018-07-04 16:52:21 · 6764 阅读 · 2 评论