使用铬框架的麻烦

时间:2012-06-19 13:41:11

标签: html google-chrome google-chrome-frame

我通过将其放置在我的页面主体中来检测用户是否具有镀铬框架:

<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"> </script>

<div id="placeholder"></div>

<script>
 CFInstall.check({
    node: "placeholder",
destination: "http://www.waikiki.com"
  });
</script>

在我的样板页面的标题中,我有:

 <meta http-equiv="X-UA-Compatible" content="chrome=1">

我设法让网站提示我安装chrome框架,我做了,但页面仍然呈现IE错误,任何想法为什么?

使用IE7。

1 个答案:

答案 0 :(得分:0)

您可以通过右键单击页面来判断页面是否正在使用chrome框架。如果上下文菜单列出“关于Chrome Frame ..”,则会通过chrome frame plugin渲染页面。

还需要在加载正文后调用CFInstall.check。