javascript – 正确显示Instagram日期

前端之家收集整理的这篇文章主要介绍了javascript – 正确显示Instagram日期前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我的Web应用程序的一个脏JSFiddle版本,但是,我不明白如何从Unix TimeStamp正确调整日期,我想要显示的是月,日和年.

任何帮助将不胜感激!

http://jsfiddle.net/89YCe/

这是代码

$(function() {
    $.ajax({
        type: "GET",dataType: "jsonp",cache: false,url: "https://api.instagram.com/v1/tags/crookedspaces/media/recent/?access_token=16741082.1b07669.121a338d0cbe4ff6a5e04543158a4f82",success: function(data) {
            console.log(data);
            //OKAY,now lets get to the pretty stuff,INSTAGRAM PEEKTARS.
            for (var i = 0; i < 5; i++) {
                    $(".instagram").append("\
                        <div class='instagram-Feed'>\
                            <img class='instagram-image' src='" + data.data[i].images.standard_resolution.url +"' width='325px'/>\
                            <div class='igHover2'>\
                                posted by: "+data.data[i].user.username+"<br />\
                                posted on: "+Date(data.data[i].created_time).toString()+"<br />\
                            </div />\
                        </div>\
                    ");
            }
        }
    });
});​

解决方法

这个给你:
$(function() {
    $.ajax({
        type: "GET",INSTAGRAM PEEKTARS.
            for (var i = 0; i < 5; i++) {
                var date = new Date(parseInt(data.data[i].created_time) * 1000);
                    $(".instagram").append("\
                        <div class='instagram-Feed'>\
                            <img class='instagram-image' src='" + data.data[i].images.standard_resolution.url +"' width='325px'/>\
                            <div class='igHover2'>\
                                posted by: "+data.data[i].user.username+"<br />\
                                posted on: "+(date.getMonth()+1)+"/"+date.getDate()+"/"+date.getFullYear()+"<br />\
                            </div />\
                        </div>\
                    ");
                date = null;
            }
        }
    });
});

这个工作http://jsfiddle.net/89YCe/2/的现场演示

原文链接:https://www.f2er.com/js/158487.html

猜你在找的JavaScript相关文章