javascript判断 navigatoruserAgentindexOf(“iPhone”)
HTML判断IE类型
<![if !IE]><!> 除IE外都可识别 <!<![endif]>
<![if IE]> 所有的IE可识别 <![endif]>
<![if IE ]> 只有IE可以识别 <![endif]>
<![if IE ]> 仅IE与IE可以识别 <![endif]>
<![if gt IE ]> IE以及IE以上版本都可以识别 <![endif]>
<![if IE ]> 仅IE可识别 <![endif]>
<![if lt IE ]> IE以及IE以下版本可识别 <![endif]>
<![if gte IE ]> IE以及IE以上版本可识别 <![endif]>
<![if IE ]> 仅IE可识别 <![endif]>
<![if lt IE ]> IE以及IE以下版本可识别 <![endif]>
<![if gte IE ]> IE以及IE以上版本可识别 <![endif]>