如果IE包含文件[A],则包含文件[B]
我有要为不同浏览器加载不同内容的页面。
示例:
IF Internet explorer
{include file="/content1.tpl"}
ELSE if any other browser
{include file="/content2.tpl"}
{/if}
Content 1.tpl&;Content 2.tpl是两个不同的文件,具有各自受尊重的HTML&;css。
如何使用Java脚本或php实现这一点?
谢谢,
- 普通话
编辑
我想要的是,IE完全忽略Content 2.tpl
&;Mozilla或其他完全忽略Content 1.tpl
解决方案
此作品:
<!--[if IE]>
{include file="/content1.tpl"}
<![endif]-->
<![if !IE]>
{include file="/content2.tpl"}
<![endif]>
查看HERE了解更多详细信息。
相关文章