码迷,mamicode.com
首页 > Web开发 > 详细

jquery 添加方法 : $.fn.方法名 = function(参数a,b,c){

时间:2014-07-06 22:31:18      阅读:451      评论:0      收藏:0      [点我收藏+]

标签:os   cti   html   io   htm   type   

       $.fn.image_checked = function(self,status,img_body,csrf_token){
             $(this).live(‘click‘, function(){
        var index = $(this).index()
        var img_id = $(‘.‘+self+‘ input‘).eq(index).val();
                $.ajax({
            type:‘POST‘,
                        url:BASEURL+‘img/checked_image‘,
            data:{status:status,img_id:img_id,csrf_token_name:csrf_token},
            success:function(msg)
            {
                $("."+img_body).html(msg);
                $(‘.mark‘).imgbig(‘.mark‘);
                                tips_load($(‘.tabs_nav_active‘).children().children().eq(0).html(),‘.cur‘)
            }
        })

        })
       }


    $.fn.tabs = function(tab_content){
        $(this).each(function(i) {
            $(this).click(function() {
                $(tab_content).addClass(‘tabs_content_hide‘).removeClass(‘cur‘)
                $(tab_content).eq(i).removeClass(‘tabs_content_hide‘).addClass(‘cur‘)
                $(this).siblings().removeClass(‘tabs_nav_active‘)
                $(this).addClass(‘tabs_nav_active‘)
            });
    });

jquery 添加方法 : $.fn.方法名 = function(参数a,b,c){,布布扣,bubuko.com

jquery 添加方法 : $.fn.方法名 = function(参数a,b,c){

标签:os   cti   html   io   htm   type   

原文地址:http://www.cnblogs.com/legend-song/p/3824441.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!