修复 IE 6 的 bug

发布于 2024-07-20 06:19:00 字数 533 浏览 3 评论 0原文

我创建了一个像这样的锚点:

<a id="create" />

它在 IE 7 中有效,但在 IE 6 中无效。

如何在 IE6 中修复它?

更多信息:

我正在使用 asp.net c#。 我在 IE6 和 iframe 中运行它。 屏幕刚刚刷新,面板不显示。 但如果我不使用:

Response.Redirect(Request.Url.PathAndQuery) +“&New=1#create”);

即如果我这样做:

Response.Redirect(Request.Url.PathAndQuery) +“&New=1”);

它工作正常,但不进入面板。 顺便说一句:它在 IE 7 下一切正常。它在 IE 6 或 iframe 中的 IE 6 中不起作用

I created an anchor like this:

<a id="create" />

and it works in IE 7 but not in IE 6.

How do I fix it in IE6?

Further Info:

I am using asp.net c#. I am running it in IE6 and in an iframe. The screen just refreshes and the panel doesn't show. But if I don't use:

Response.Redirect(Request.Url.PathAndQuery
+ "&New=1#create");

i.e. If I do:

Response.Redirect(Request.Url.PathAndQuery
+ "&New=1");

It works fine, but doesn't goto the panel.
btw: it all works fine under IE 7. It doesnt work in IE 6 or in IE 6 in an iframe

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

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

发布评论

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

评论(3

偷得浮生 2024-07-27 06:19:00

IE 6 有一个奇怪的行为,它无法识别带有锚点的重定向。 解决方法是添加额外的与符号“&” 之前 '#'。 因此,在您的示例中,代码将类似于 Response.Redirect(Request.Url.PathAndQuery + "&New=1&#create");

我建议您检查 User-Agent服务器端并添加此附加符号(如果浏览器是 IE 6)。

IE 6 has a strange behaviour, it does not recognizes redirects with anchors in it. The workaround is to add additional ampersand symbol '&' before the '#'. So, in your example, the code will look like Response.Redirect(Request.Url.PathAndQuery + "&New=1&#create");

I suggest you to check User-Agent on the server side and add this additional ampersand if the browser is IE 6.

鼻尖触碰 2024-07-27 06:19:00

根据记忆,您使用 'name' 属性

from memory you use the 'name' attribute

许你一世情深 2024-07-27 06:19:00

尝试使用 name='create'

try to use name='create'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文