共享后FB.ui javascript重定向不在SSL上的IE8上工作

共享后FB.ui javascript重定向不在SSL上的IE8上工作,javascript,facebook,facebook-javascript-sdk,Javascript,Facebook,Facebook Javascript Sdk,出于某种原因,facebook共享后的javascript重定向在SSL上的IE8上不起作用。 有人知道为什么吗?出于某种原因,这似乎只是在虚拟机上使用IE8。没有IE8就可以了。您是否尝试过不使用setTimeout,在发布后立即重定向?您在控制台中有任何错误吗? FB.ui({ method: 'feed', name: 'Help set the record straight!', link: 'http://www

出于某种原因,facebook共享后的javascript重定向在SSL上的IE8上不起作用。
有人知道为什么吗?

出于某种原因,这似乎只是在虚拟机上使用IE8。没有IE8就可以了。

您是否尝试过不使用setTimeout,在发布后立即重定向?您在控制台中有任何错误吗?
FB.ui({
            method: 'feed',
            name: 'Help set the record straight!',
            link: 'http://www.facebook.com/nothingbeatsbeef/app_545512565475443',
            picture: 'http://cs.apps2.pixolut.com/rsrc/509309abe46cea93eefec36a',
            caption: '',
            description: 'No longer will Aussies be taunted with ‘Throw another shrimp on the barbie’. Sign the petition to get the ad that started it all remade with the RIGHT line ‘throw another steak on the barbie’.'
        },function(response){
            if (response && response.post_id) {
                 setTimeout(function(){self.location.href = '/load/preview/page/50908acbe46c03d72dcc26b6';}, 2000); 
            } else {
                 setTimeout(function(){self.location.href = '/load/preview/page/50908acbe46c03d72dcc26b6';}, 2000); 
            }
        });