修复 IE 6 的 bug
我创建了一个像这样的锚点:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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.
根据记忆,您使用 'name' 属性
from memory you use the 'name' attribute
尝试使用 name='create'
try to use name='create'