if和else if语法或逻辑

时间:2014-07-25 07:41:18

标签: javascript jquery syntax logic syntax-error

$('.listing-img').each(function(){

    $temp = $(this);
    image_url = $(this).attr('src');
    $section_content = $('.main_wrapper').find('section');

    if($section_content.hasClass('content_listing')){
        caption_temp = $temp.parent().next().find('h4').html();
        caption_temp = spaceToNbsp(caption_temp);

    } else if($section_content.hasClass('content_2column')){
        caption_temp = $('.page_intro_body').find('h1').html();
        caption_temp = spaceToNbsp(caption_temp) + ' ' + num;
        num = ++num;
    }

    $temp.wrap('<a href='+image_url+' class="swipebox" rel="gallery">');
    $temp.parent().attr('title',caption_temp);

});
你好。问题是,如果我选择其中任何一个并取出“If”或“Else If”,代码功能完美,但无法让它一起工作。我有点困惑。我想念的是什么?

如果有人可以提供帮助,非常感谢。

感谢。

0 个答案:

没有答案