English 中文(简体)
IE8: 如何在不连接range的情况下把注意力放在pop和背上
原标题:IE8: How to set focus to a popup and back without blinking orange

有两个窗口:家长窗口和儿童窗口。 父母可以把儿童放在短处,儿童可以把重点重新放在短处。

I have a test website here. Just open the website in a new browser window, and try it in IE8. This both works as expected:

  1. Click on the parent window, and press f: the child gets focus
  2. Click on the child window, and press esc: parent gets focus

但是,如果你把1和2结合起来,它就不会发挥作用:

  • Click on parent window and press f: child gets focus. Now press esc: the parent starts blinking but does not come to the front!

我尝试了多种不同的做法,但我只有这样,才能稳定,而没有联系。 如果一个窗口集中使用一个捷径,那么你就可以不把焦点交回。

这一问题在8月中就存在! 它在E9中发挥了巨大作用。

是否有任何人知道这项工作或解决办法?

问题回答

这似乎与IE 8和Word XP存在问题。 Microc说,他们已经确定,但迄今为止,他们已经释放了两个“固定点”,问题仍然存在。

rel=“nofollow>> http://support.microsoft.com/kb/979954

http://support.microsoft.com/kb/973528"rel=“nofollow> http://support.microsoft.com/kb/973528

你们是否尝试过?

window.blur();
window.opener.focus();




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签