jquery.parent() 用法

发布于 2024-11-17 15:27:09 字数 580 浏览 2 评论 0原文

这是我的代码:

<div id="reason_bars">Reason <select style="width:200px;" disabled="disabled"><option><option></select>
<div class="edit" style="position:absolute;left:212px;top:50px;">Edit</div></div>

我想触发一个事件,其中,如果单击带有 class="edit" 的 div,则该元素(其同级)将被启用,

我尝试了以下代码:

$(document).ready(function () {
$("#reason_bars .edit").click(function () {
var parent=$(this).parent();
$(parent+" select").removeAttr("disabled");
});
});

这不起作用。

还有其他选择吗?

谢谢!

Here is my code :

<div id="reason_bars">Reason <select style="width:200px;" disabled="disabled"><option><option></select>
<div class="edit" style="position:absolute;left:212px;top:50px;">Edit</div></div>

i want to trigger an event, where , if one clicks on the div with class="edit" , the element(its sibling) gets enabled,

i tried the following code :

$(document).ready(function () {
$("#reason_bars .edit").click(function () {
var parent=$(this).parent();
$(parent+" select").removeAttr("disabled");
});
});

this doesn't work.

Is there any alternative ?

Thanks!

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

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

发布评论

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

评论(4

纸伞微斜 2024-11-24 15:27:09

您需要将其写为 $(parent).find('select').removeAttr("disabled")

You need to write this as $(parent).find('select').removeAttr("disabled")

债姬 2024-11-24 15:27:09

尝试一下:

$(document).ready(function () {
$(".edit").click(function () {
   $(this).parent().find('select').removeAttr("disabled");
  });
 });

此处

try ths:

$(document).ready(function () {
$(".edit").click(function () {
   $(this).parent().find('select').removeAttr("disabled");
  });
 });

here

深居我梦 2024-11-24 15:27:09

尝试

$(document).ready(function () {
     $("#reason_bars .edit").click(function () {
          $(this).siblings('select').removeAttr("disabled");
     )}
});

在您的行 $(parent+" select") 中,parent 是对对象的引用,而不是字符串,这就是它不起作用的原因。您还可以使用 jQuery 同级选择器来简化事情。

希望这有帮助!

Try

$(document).ready(function () {
     $("#reason_bars .edit").click(function () {
          $(this).siblings('select').removeAttr("disabled");
     )}
});

In your line $(parent+" select") parent is a reference to an object, not a string which is why it doesnt work. You also can use the jQuery sibling selector to simplify things.

Hope this helps!

神经大条 2024-11-24 15:27:09

你可以尝试这样的事情

$(document).ready(function () {
    $("#reason_bars .edit").click(function () {
        $(this).parent().find("select").removeAttr("disabled");
    });
});

You could try something like this

$(document).ready(function () {
    $("#reason_bars .edit").click(function () {
        $(this).parent().find("select").removeAttr("disabled");
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文