我已经addthis
在我的代码中实现了 javascript。
但是如果我在 IE 7 中打开我的页面,它将无法正常工作。
因此,我仅在浏览器不是 IE 7 时才尝试添加该脚本
首先,我编写了这段代码,它可以工作。
<!--[if IE 7]>
<script type="text/javascript">
alert('hihi');
</script>
<![endif]-->
该代码有效,页面将显示hihi
在其他浏览器中,IE 7
但不会显示在其他浏览器中。
现在,我想扭转这一点,让页面hihi
仅在浏览器不显示的情况下显示IE 7
我试过
<!--[if !IE 7]>
<script type="text/javascript">
alert('hihi');
</script>
<![endif]-->
但它不起作用。还有其他方法吗?
谢谢。