当前位置: 首页 > 工具软件 > jquery-ahover > 使用案例 >

jQuery - Events - hover

丁俊爽
2023-12-01

jQuery - Events - hover

[示例]

<html>
  <head>
    <script type="text/javascript" src="jquery-1.2.js"></script>
  </head>
  <body>
    <a id="link" href="http://blog.csdn.net/hu_zhenghui">
        hu zhenghui
    </a>
    <script>
        $("#link").hover (
            function (event) {
                $(event.target).css("font-size", "20px");
            },
            function (event) {
                $(event.target).css("font-size", "");
            }
        );
       </script>
  </body>
</html>

[Events/hover用途]

设置元素响应mouseover和mouseleave

[Events/hover文档]

http://docs.jquery.com/Events/hover

[jQuery官方网站]

http://jquery.com/

[jQuery当前版本]

http://docs.jquery.com/Release:jQuery_1.2

[jQuery其他下载地址]

下载列表, http://docs.jquery.com/Downloading_jQuery
最新代码, http://code.jquery.com/nightlies/jquery-nightly.js

[jQuery相关论坛]

http://groups.google.com/group/jquery-en

[jQuery关键词]

jQuery

[jQuery的Ajax]

 jQuery的Ajax文档, http://docs.jquery.com/Ajax/jQuery.ajax
jQuery的Ajax选项,http://docs.jquery.com/Ajax/jQuery.ajax#options
dataType选项,设置返回值类型
timeout选项,用于设置超时

[jQuery特效]

jQuery淡入特效,http://docs.jquery.com/Effects/fadeIn

[jQuery选择器]

表单元素选择器, http://docs.jquery.com/DOM/Traversing/Selectors#Form_Selectors
属性相等选择器,http://docs.jquery.com/Selectors/attributeEquals
选择器在选择body中出现的title标记时,会出现和预期不同的效果。

[jQuery常用函数]

attr访问自定义属性,减少javascript脚本中代码和数据的耦合
click, 绑定元素的onclick事件,http://docs.jquery.com/Events/click
filter, 用于在集合中过滤元素

[jQuery - Events]

hover, http://docs.jquery.com/Events/hover

[jQuery插件]

Easing,http://jquery.com/plugins/project/easing
jCarouseLite, 走马灯效果, http://jquery.com/plugins/project/jCarouselLite
tableFilter, 表过滤器, http://jquery.com/plugins/project/tableFilter

[jQuery重要工具]

http://www.json.org/, http://www.json.org/json.js
 类似资料: