div 在 ie 中为空,但在 mozila 和 opera 中为空

发布于 2024-11-19 14:53:31 字数 330 浏览 4 评论 0原文

<div id="a"></div>

if($("#a").is(':empty') )
      alert("empty");

在 IE8 中,它显示 alert,但 Mozila 3.6 和 Opera 11 不显示 alert。为什么?

答案:

if(!$.trim( $("#a").html() ) )
   alert("empty");

此代码在 ie 和 mozila 中运行

<div id="a"></div>

if($("#a").is(':empty') )
      alert("empty");

In IE8, it shows alert but Mozila 3.6 and Opera 11 do not show the alert. Why?

Answer:

if(!$.trim( $("#a").html() ) )
   alert("empty");

this code run in ie and mozila

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

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

发布评论

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

评论(1

千纸鹤 2024-11-26 14:53:32

您的代码是有效的并且应该可以在这些浏览器中运行。我在 FireFox 和 Chrome 中测试了它,它可以工作。

验证您的页面中没有任何其他元素的 ID 也为 a。大多数符合网络标准的浏览器正确拒绝承认任何重复的元素,并且通常会导致 JavaScript 由于错误而失败。

Your code is valid and should work in those browsers. I tested it in FireFox and Chrome and it works.

Verify that you do not have any other elements in your page that also have an id of a. Most browsers compliant with web standards correctly refuse to acknowledge any duplicated elements and often it causes JavaScripts to fail due to errors.

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