首页 相关文章 用jQuery扩展自写的 UI导航

用jQuery扩展自写的 UI导航

代码如下:
(function($){
$.navs=function(){
return $('#top_menu_bar li').each(function(){
$(this).hover(
function(){
$(this).find('ul:eq(0)').show();
},
function(){
$(this).find('ul:eq(0)').hide();
}
);
});
};
})(jQuery);

上面是直接定义属性。下面是种常见的方法:
代码如下:
jQuery.extend({
navs:function(){
return $('#top_menu_bar li').each(function(){
$(this).hover(
function(){
$(this).find('ul:eq(0)').show();
},
function(){
$(this)...[ 查看全文 ]

2016-02-19 标签:

用jQuery扩展自写的 UI导航的相关文章

手机页面
收藏网站 回到头部