当我使用Facebook墙贴时它给我错误

时间:2017-10-12 19:15:15

标签: c# facebook facebook-graph-api facebook-c#-sdk facebook-access-token

this type of error: length cannot be zero 当我使用Mark Hagan Facebook墙贴的源代码时,它给我的错误就像长度不能为零。

即时尝试使用用户登录Facebook帖子。 这是我的代码请帮帮我,这段代码有什么问题..?

var outer, inner, width, interval, height;
inner = document.querySelector(".inner");
width = 0;
height = 0;

window.addEventListener("load", function () {
    interval = setInterval(function () {
        if (width >= 200 && height >= 200) {
            inner.textContent = "100% Completed";
            clearInterval(interval);
        }
        else {

            width += 3.333;
            height += 3.333;
            inner.style.width = width + "px";
            inner.style.height = height + "px";
        }
    }, 1000);
});

帮助!!!在此先感谢。

0 个答案:

没有答案