在jQuery中应用条件

时间:2015-10-22 08:38:58

标签: jquery

所以,我有以下jquery:

jQuery(document).ready(function() { 
    jQuery.ias().on('rendered', function(items) {       
        first_function();
        second_function();              
    }); 
}); 

在当前设置中,仅在呈现jquery.ias()时触发功能。

如何更改条件以便在加载页面和呈现jQuery.ias时都触发这些函数?

感谢。

编辑:

所以,实际上我有很多需要在上述条件下触发的函数。对不起混淆

jQuery(document).ready(function() { 
    jQuery.ias().on('rendered', function(items) {       

    //1st function
    jQuery('#rh_post_add_done').click(function(){
      jQuery('#rh_post_add_done_click').click();
    }); 
    //2nd function
    jQuery(document).ready(function(){
        jQuery(".rh_setting_button").click(function(){
         var post_id_edit = jQuery(this).data("post_id");
             jQuery('#rh_' + post_id_edit).popup();
        });   
     })
     //3st function  
     //4th function
     //5th function
     //6th function
     //7th function, you get the point                  
    }); 
 });

2 个答案:

答案 0 :(得分:3)

jQuery(document).ready(function() { 
    jQuery.ias().on('rendered', function(items) {       
        first_function();
        second_function();              
    }); 

    first_function();
    second_function();  
});

答案 1 :(得分:1)

使用以下语句。所以函数将调用这两个条件。

 jQuery(document).ready(function() { 
            first_function();
            second_function(); 
        jQuery.ias().on('rendered', function(items) {       
            first_function();
            second_function();              
        }); 
    });