从Div中检索Class元素

时间:2013-11-09 18:18:56

标签: javascript jquery html

我正在使用autodividersSelector功能将发布日期显示为分隔文本。我陷入了如何导航以检索日期类的问题。下面是DOM中Div元素的代码和控制台日志。

如果此问题已在其他地方得到解答,请提供链接。感谢

代码

$(document).on('pagebeforeshow', '#blogposts', function () {
    $.ajax({
        url: "http://howtodeployit.com/category/daily-devotion/feed/?json=recentstories" ,
        dataType: "json" ,
        beforeSend: function () {$('.loader').show();},
        complete: function () {$('.loader').hide();},
        success: function (data){
            $('#postlist').empty();
            //setTimeout(function(){
                $.each(data.posts, function (key, val) {
                //Format date
                var dateString = val.date.split(' ')[0];
                var vdate = dateString.split("-")[1] + " " + monthStrings[parseInt(dateString.split("-")[1])] + ", " + dateString.split("-")[0];
                //Output data collected into page content
                    var rtitle = $('<p/>', {'class' : 'vTitle', html: val.title}); rdate = $('<p/>', {'class': 'vDate' , html: vdate});
                    rid = $('<a href="#d-posts" onclick="showPost(' + val.id + ')"></a>');
                    var rappend = $('<li/>').append(rtitle, rdate);
                    $('#postlist').append($(rappend).wrapInner(rid).fadeIn(600));
                    $('#postlist').listview({
                        autodividers: true,
                        autodividersSelector: function (li) {
                            //console.log(li);
                            var out = $(li).get(0)
                            console.log(out);
                            return out;
                        }
                    });
                    return (key !== 5);
                });
            $("#postlist").listview().listview('refresh').append('<div class="more-posts" style="text-align: center;">Load more posts...</div>');
        //  }, 2000);
        },
        error: function (data) {
            alert("Service currently not available, please try again later...");
        }

    });
});

enter image description here

在分隔符

中显示[objectHTMLLiElement]的输出结果

enter image description here

HTML:

<!-- Page: Blog Posts -->
    <div id="blogposts" data-role="page">
        <div data-role="header" data-position="fixed">
            <h2>My Blog Posts</h2>
        </div><!-- header -->
        <div data-role="listview">
            <ul data-filter="true" data-filter-placeholder='Search blog posts...' data-theme="a" id="postlist"> </ul><!-- content -->
        </div>
        <div class="loader"><img src="css/images/loader.gif"/></div>
    </div><!-- page -->

2 个答案:

答案 0 :(得分:0)

$('.vDate').each(
    function(){
        alert($(this).html());
    }
);

答案 1 :(得分:0)

好的,这是适用于自定义autodividersSelector的最终代码:

$('#postlist').listview({
    autodividers: true,
    autodividersSelector: function (li) {
       var out = li.find("p").map(function() {return $(this).text();});
       var out1 = out.get(1);
    return out1;
    }
});