IE 9 and IE 10 cannot enter text into input text boxes from time to time

后端 未结 11 1861
傲寒
傲寒 2020-12-05 13:59

There is a web page with an iframe inside. Sometimes, Input text box controls, inside the iframe, are locked/ freezed. Users cannot enter text into them. But the text box ca

11条回答
  •  悲&欢浪女
    2020-12-05 14:23

    Here's the solution that worked for me, having tried all of the others on this page! Requires jQuery but I'm sure it could be rewritten in native JavaScript if that's necessary.

    As with many of the other solutions, this should be added to the source of the iframe, assuming you have access to modify it:

    $("body").focusout( function () { window.focus(); });

提交回复
热议问题