JQuery 添加类的不同方法

发布于 2024-12-04 12:34:48 字数 651 浏览 1 评论 0原文

我见过一些使用 JQuery 将类添加到动态创建的元素的不同方法。

我最熟悉

$("<div />").addClass("class1 class2");

但是我见过很多

$("<div />", {
  class : "class1 class2"
});

当我在 Fiddle< 中测试第二种方法时/a> 我可以看到 class1 和 class2 都已应用。

然而,当应用于我正在做的事情

// this does not work
var b = $("<div id='tweetBox' />", {
    class : "triangle-right right"
});

// this works
var b = $("<div id='tweetBox' />").addClass("triangle-right right");

I have seen a few different methods for adding classes to dynamically created elements using JQuery.

I'm most familiar with

$("<div />").addClass("class1 class2");

however I have seen a lot of

$("<div />", {
  class : "class1 class2"
});

When I test out the second method in a Fiddle I can see both class1 and class2 are applied.

however, when applied to what i'm working on

// this does not work
var b = $("<div id='tweetBox' />", {
    class : "triangle-right right"
});

// this works
var b = $("<div id='tweetBox' />").addClass("triangle-right right");

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

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

发布评论

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

评论(2

东风软 2024-12-11 12:34:48

你不能混合搭配。

尝试:

var b = $("<div />", {
    id: "tweetBox",
    class : "triangle-right right"
});

you can't mix and match.

try:

var b = $("<div />", {
    id: "tweetBox",
    class : "triangle-right right"
});
何其悲哀 2024-12-11 12:34:48
// this does not work
var b = $("<div id='tweetBox' />", {
    class : "triangle-right right"
});

不起作用,因为您正在创建的元素上有一个属性。

This will work
var b = $("<div />", {
    id: 'tweetBox',
    class : "triangle-right right"
});
// this does not work
var b = $("<div id='tweetBox' />", {
    class : "triangle-right right"
});

Doesn't work because there is an attribute on the element you are creating.

This will work
var b = $("<div />", {
    id: 'tweetBox',
    class : "triangle-right right"
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文