jQuery:显示带有 VAR 的 DIV 作为 CLASS

发布于 2024-11-04 00:58:52 字数 236 浏览 1 评论 0原文

我试图通过将 DIV#2 的类放入 DIV#1 的 REL 中来将一些 DIV 链接在一起。

我不明白为什么这不起作用。如果我 html() 它,它会写出正确的东西。

我在jsfiddle上做了一个例子: http://jsfiddle.net/n6Q2G/6/

你可以吗看看出了什么问题???

I'm trying to link some DIVs together by putting the class of DIV#2 into REL of DIV#1.

I can't find out why this doesn't work. If I html() it, it will write the correct thing.

I have made an example on jsfiddle: http://jsfiddle.net/n6Q2G/6/

Can you see whats wrong???

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

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

发布评论

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

评论(1

情绪少女 2024-11-11 00:58:52

这是您要找的吗? http://jsfiddle.net/jomanlk/n6Q2G/7/

我将其更改为 $("div." + successDialog).show();

$('.submit').click(function() {
    var sucessDialog = $('#dialogs > div:visible').attr('rel');
    $('#dialogs > div:visible').slideUp("slow");

    //just do a filter with divs that have that added class
    $("div." + sucessDialog).show();
});

Is this what you're looking for? http://jsfiddle.net/jomanlk/n6Q2G/7/

I changed it to $("div." + sucessDialog).show();

$('.submit').click(function() {
    var sucessDialog = $('#dialogs > div:visible').attr('rel');
    $('#dialogs > div:visible').slideUp("slow");

    //just do a filter with divs that have that added class
    $("div." + sucessDialog).show();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文