第 4 步在一页中检查 magento 在 IE 9 中不起作用

发布于 2024-11-07 10:17:03 字数 110 浏览 0 评论 0原文

我已经尝试过强制兼容 IE8,但它似乎不起作用。似乎步骤 1-3 工作正常,但当我选择信用卡信息时,我的点击没有任何反应...卡类型不会下拉选择,并且没有任何输入可供选择。

有人见过这个吗?

I already tried forcing compatibility mode to IE8 and it does not seem to work. Seems like steps 1-3 work fine but then when I got to select credit card info, nothing responds to my clicks... the cardtype does not drop down a selection and none of the inputs are selectable.

Has anyone seen this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

把人绕傻吧 2024-11-14 10:17:03

我们遇到了这个问题并强制 IE8 兼容如我对此问题的回答中所述修复了它。值得注意的是,head 顶部的 meta 标记的位置很重要。

显然,另一种方法是拥有多种付款方式。 (有一些报告称,当只有一种付款方式可用时,该错误仅在 IE 9 上出现。)

We had this problem and forcing IE8 compatibility as described in my answer to this question fixed it. Of note, the position of the meta tag at the top of the head is important.

The other way around it, apparently, is to have more than one payment method. (There have been some reports that the bug only manifests itself on IE 9 when there is only one payment method available.)

牵你手 2024-11-14 10:17:03

事实上,我刚刚为我的一个朋友处理过这个问题。您必须确保怪异模式标记是标头标记之后的第一个标记。

浏览到以下位置:

app/design/frontend/default/your template/template/page/

除非您对 magento 安装进行了大量修改,否则包含结账的模板应位于该文件夹中。它很可能是 2column-right.phtml 或 2column-left.phtml 文件。 (为了安全起见,我在所有代码文件中放入一个强制网站上的每个页面使用 IE8 怪异模式)。您的标头应如下所示:

<head>
 <meta http-equiv="X-UA-Compatible" content="IE=8" />

此外,完成后不要忘记刷新管理部分中的缓存。如果你把它放在正确的地方,它“应该”起作用。

I actually just dealt with this for a friend of mine. You have to make sure that the quirks mode tag is the very first tag following the header tag.

Browse to the following location:

app/design/frontend/default/your template/template/page/

Unless you've heavily modified the magento install the template that contains the checkout should be in that folder. It's most likely the 2column-right.phtml or 2column-left.phtml file. (I put one in all the code files to force every page on the site to use IE8 quirks mode just to be safe). Your header should look exactly like this:

<head>
 <meta http-equiv="X-UA-Compatible" content="IE=8" />

Also, when you are done don't forget to flush the cache in the admin section. It 'should' work if you put it in the right place.

自此以后,行同陌路 2024-11-14 10:17:03

我在 1.5.1.0 中遇到了完全相同的问题。亚当,找到解决方案运气好吗?

尽管损坏的页面兼容模式图标已从地址栏中消失,但 X-UA-Compatible 修复并未产生任何影响。

编辑:没关系。我找到了 此修复,谢谢杰布斯。我以为我永远无法修复它。

I'm having the exact same problem with 1.5.1.0. Any luck with finding a solution, Adam?

The X-UA-Compatible fix hasn't made a difference, although the broken page compatibility mode icon has gone from the address bar.

Edit: Nevermind. I found this fix, thank Jebus. I thought I'd never fix it.

猫七 2024-11-14 10:17:03

将其放在模板的头部。将解决 Magento 和 IE9 的任何问题:

<meta http-equiv="X-UA-Compatible" content="IE=8" />
<meta http-equiv="X-UA-Compatible" content="IE=7" />

Place this in the head of your template. Will cure any problems with Magento and IE9:

<meta http-equiv="X-UA-Compatible" content="IE=8" />
<meta http-equiv="X-UA-Compatible" content="IE=7" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文