我想知道是否有其他人遇到过这个问题。
我想将 google+ 分享网址定位到 iframe,而不必打开一个新窗口。
以下是我正在使用的测试代码:
<?php
$url = "https://plus.google.com/share?url=http%3A%2F%2Feu.arithon.com%2Frss%2Fjobdetails.php%3Fclient_user_id%3Darithon_1348%26jobs_id%3D10000";
?>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div>
<iframe src = "<?php echo $url ?>" frameborder=no width=600 height=300></iframe>
</div>
<script type="text/javascript">
function openShareWindow()
{
url = "<?php echo $url ?>";
window.open(url, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=400,width=600');
return false;
}
</script>
<a href="javascript:void()" onclick="openShareWindow();">
<img src="http://eu.arithon.com/new_arithonASP/new_images/arithon_post.jpg" alt="Share on Google+"/>
</a>
</body>
</html>
在 Internet Explorer 中,iframe 显示错误“此内容无法在框架中显示...”等
在Firefox中,没有错误并且iframe是空的!
有什么方法可以将 url 定位到 IE 中的 iframe 而不会出现此错误?
任何帮助,将不胜感激。