这是我的代码,它在IE 7、8中工作正常,但在IE 9中被阻止

FB.ui(
           {
               display: 'dialog',
               method: 'feed',
               name: Resource.WallPost.Title,
               link: Resource.WallPost.Url,
               picture: Resource.WallPost.PictureUrl,
               caption: '',
               description: Resource.WallPost.Description,
               message: ''
           },
           function (response) {
               if (response && response.post_id) {
               } else {
               }
           }
         );

最佳答案

出于安全原因,IE9会在安全子帧中阻止不安全的内容。 Facebook团队目前正致力于在其API中解决此问题。

09-25 20:59