Using IE dev toolbar on a pop up windowed web app

前端 未结 5 828
清酒与你
清酒与你 2021-01-07 22:58

We are working on IE only web application that is run as a pop up window - without any toolbars. Is there a way to invoke IE developer\'s toolbar besides using a button on t

相关标签:
5条回答
  • 2021-01-07 23:14

    copy url link of the popup and open in in a separate window or tab

    0 讨论(0)
  • 2021-01-07 23:15

    I had the same problem, I was forced to modify my code, so that I have a server variable read from a config file if we show the toolbar or not. This way when we are in dev or qa we show the toolbar, but in production we hide it.

    If someone knows of a better way hopefully they will chime in.

    Edit

    Ohh and this doesn't work at all for a modal dialog window.showModalDialog (or if ie supports it window.open(page,"modal=yes") ) and ctrl-n doesn't work either.

    0 讨论(0)
  • 2021-01-07 23:24

    Yes. You need to turn off the security option "Allow websites to open windows without address or status bars".

    In IE9 the menu option is at (believe it is same in 8): Go Tools / Internet options / Security / (pick the right zone for your site) / Custom Level Under "Miscellaneous" Under "Allow websites to open windows without address or status bars", choose "Disable".

    You should now have an address bar in your modal dialogs and be able to hit F12 to open IE developer toolbar.

    0 讨论(0)
  • 2021-01-07 23:24

    If you can use the IE8 beta/RC, try hitting F12 on the popup.

    0 讨论(0)
  • 2021-01-07 23:27

    Press CTRL-n while the window is active. It will open the same URL in a non pop-up window, complete with tool bar.

    0 讨论(0)
提交回复
热议问题