通过表单重定向而不会出错

时间:2012-09-20 23:24:49

标签: php javascript ajax

我正在尝试将访问者发送到http://www.facebook.com/plugins/comments.php?href=http://google.com?c

不断给出错误 comments插件需要一个href参数。

<script>
function go(){
    var uri = 'http://www.facebook.com/plugins/comments.php?href=' 
        + encodeURIComponent('http://google.com?c');

    window.frames[0].document.body.innerHTML = 
        '<form target="_parent" action="' 
        + uri 
        + '"></form>';
    window.frames[0].document.forms[0].submit();
}    
</script>
<iframe onload="window.setTimeout('go()', 99)" src="about:blank" style="visibility:hidden"></iframe>

0 个答案:

没有答案