如果浏览器是IE6则隐藏特定的DIV

发布于 2024-11-25 10:07:41 字数 389 浏览 0 评论 0原文

我的网站上有一个 DIV,它调用一些外部 javascript...不幸的是,供应商不支持 IE6。该脚本位于全局页脚中,因此它位于每个页面上。

我收到错误消息,我们的 https 网站正在传递不安全的内容,您想查看该内容吗...等等等等...

如果浏览器是 IE6,是否可以隐藏此 div?

<div id="get-satisfaction">
<style>
a#fdbk_tab {
top:60px;

}
</style>


<script type="text/javascript" charset="utf-8">


  //content here

</script>
</div>

I have a DIV on my site that calls a few external javascripts... unfortunatley the vendor does not support IE6. This script is in the global footer, so its on every page.

I get the error that our https site is passing content that is not secure, would you like to view the content...blah blah...

Is is possible to just hide this div if the browser is IE6??

<div id="get-satisfaction">
<style>
a#fdbk_tab {
top:60px;

}
</style>


<script type="text/javascript" charset="utf-8">


  //content here

</script>
</div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

じ违心 2024-12-02 10:07:41
    <!--[if IE 6]>
    <style>#DIVID {display: none;}</style>
    <![endif]--> 

更好的选择是检测浏览器服务器端,如果是 IE6,则不渲染 javascript 标签。

    <!--[if IE 6]>
    <style>#DIVID {display: none;}</style>
    <![endif]--> 

A better option is to detect the browser server side and not render the javascript tag if it's IE6.

你是我的挚爱i 2024-12-02 10:07:41

在开始 DIV 标签之前添加以下代码:

<!--[if !IE 6]>

在结束 DIV 标签之后添加以下代码:

<![endif]-->

所以,如果浏览器是 IE6,它应该隐藏您的 div。

Add the following code before the opening DIV tag:

<!--[if !IE 6]>

Add the following code after the closing DIV tag:

<![endif]-->

so,if the browser is IE6 ,it should hide your div.

贪恋 2024-12-02 10:07:41

此代码段向每个比 IE6 更新的浏览器显示内容。已确认可以工作。

<!--[if lte IE 6]><![if gte IE 7]><![endif]-->
<!-- code here -->
<!--[if lte IE 6]><![endif]><![endif]-->

请参阅:在 IE6 中隐藏一些 HTML?

This snippet shows the content to every browser that is newer than IE6. It's confirmed to work.

<!--[if lte IE 6]><![if gte IE 7]><![endif]-->
<!-- code here -->
<!--[if lte IE 6]><![endif]><![endif]-->

See: Hiding some HTML from IE6?

灯角 2024-12-02 10:07:41
<!--[if gt IE 6]><!-->
This code displays on non-IE browsers and on IE 7 or higher.
Include your "vendor script" here.
<!--<![endif]-->

取自此处: http://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment

<!--[if gt IE 6]><!-->
This code displays on non-IE browsers and on IE 7 or higher.
Include your "vendor script" here.
<!--<![endif]-->

Taken from here: http://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文