我正在尝试将访问者发送到http://www.facebook.com/plugins/comments.php?href=http://google.com?c
给出错误
评论插件需要一个href参数。
这部分渲染正确: http: //www.facebook.com/plugins/comments.php
但是问号后面的东西没有被包括在内
<script>
function go(){
var uri = 'http://www.facebook.com/plugins/comments.php'
+ encodeURI('?href=http://google.com?c');
window.frames[0].document.body.innerHTML =
'<form target="_parent" method="get" action="'
+ uri
+ '"></form>';
window.frames[0].document.forms[0].submit();
}
</script>
<iframe onload="window.setTimeout('go()', 99)" src="about:blank" style="visibility:hidden"> </iframe>?