Can Windows' enhanced security break jQueryUI's datepicker?

后端 未结 2 1973
抹茶落季
抹茶落季 2021-01-01 03:58

I\'m experiencing a weird problem trying to debug an ASP.NET + jQuery + jQueryUI web application developed by someone who left the company a couple of months ago.

相关标签:
2条回答
  • 2021-01-01 04:40

    If you disable IE Enhanced Security, this issue goes away. I'm not sure if this is a valid workaround, but maybe it could provide a clue.

    To disable, open Server Manager. Click Configure IE ESC and disable Enhanced Security for either Administrators or Users.

    0 讨论(0)
  • 2021-01-01 04:41

    A stab in the dark maybe but I've had similar problems where the site was being rendered in the local intranet zone and therefore automatically rendered in IE7 compatibility mode. This seemed to cause an error in jquery's browser detection. Adding the following meta tag to the head section fixed it.

    <meta http-equiv="X-UA-Compatible" content="IE=8" />

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