本文介绍了如果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了解更多详细信息。
这篇关于如果IE包含文件[A],则包含文件[B]的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!