Is it possible to use IE conditional comments to redirect?

落花浮王杯 提交于 2019-12-10 11:54:18

问题


I've got a splash page which simply jams up in IE, and creating a workaround would require a tremendous amount of jQuery. Is there any way to use IE's conditional comments to skip the splash page, and redirect to the main page?


回答1:


Put a meta refresh inside the conditional comment:

<meta http-equiv="refresh" content="0;url=mainpage-url"/>


来源:https://stackoverflow.com/questions/13189162/is-it-possible-to-use-ie-conditional-comments-to-redirect

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!