Jquery .next() - 不兼容 ie 6+7?我应该用什么?

发布于 2024-10-16 01:05:29 字数 139 浏览 3 评论 0原文

jQuery .next() - 不兼容 ie 6+7(在 netbeans 编辑器中写入警告)。

jQuery 中存在哪些可在 ie6+ie7 中工作的选项?

删除编辑,因为有代码

谢谢

jQuery .next() - not compatible for ie 6+7 (write warning in netbeans editor).

What option that work in ie6+ie7 exist in jQuery?

Delete edit because havy code

Thanks

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

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

发布评论

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

评论(1

意中人 2024-10-23 01:05:29

next 在 IE6 和 IE7 中工作得很好。

示例:

HTML:

<div id='container'>
  <div>Target A</div>
  <div>Target B</div>
  <div>Target C</div>
</div>

JavaScript:

jQuery(function($) {

  $("#container div").click(function() {
    var next = $(this).next();
    if (next.length == 0) {
      display("There's no div after this one");
    }
    else {
      display("The next div's text is: " + next.text());
    }
  });

  function display(msg) {
    $("<p/>").html(msg).appendTo(document.body);
  }

});​

Live copy

在 IE6 和 IE7 中测试并工作,两者都在 jQuery 的 支持的浏览器列表

next works just fine in IE6 and IE7.

Example:

HTML:

<div id='container'>
  <div>Target A</div>
  <div>Target B</div>
  <div>Target C</div>
</div>

JavaScript:

jQuery(function($) {

  $("#container div").click(function() {
    var next = $(this).next();
    if (next.length == 0) {
      display("There's no div after this one");
    }
    else {
      display("The next div's text is: " + next.text());
    }
  });

  function display(msg) {
    $("<p/>").html(msg).appendTo(document.body);
  }

});​

Live copy

Tested and working in IE6 and IE7, both of which are on jQuery's list of supported browsers.

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