jquery,向元素添加变量?

发布于 2024-10-12 09:17:27 字数 161 浏览 2 评论 0原文

我有一个关于 jQuery 的问题。我有一个滑出的 li,现在我想记住它是否已滑出,所以我想设置一个布尔变量 slideOut

是否可以简单地将其添加到元素中?或者我应该向元素添加一个隐藏的 div 或其他内容?

I have a question regarding jQuery. I have a li that slides out, now I want to remember if it has slided out so I want to set a boolean variable slidedOut.

Is it possible to simply add it to the element? Or should I add a hidden div or something to to element?

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

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

发布评论

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

评论(3

も星光 2024-10-19 09:17:27

您可以使用 .data() 来实现此目的。

像这样的东西

$("#yourli").data("slidedOut", false);

You can use .data() for this.

Something like

$("#yourli").data("slidedOut", false);
放我走吧 2024-10-19 09:17:27

使用 jquery data 被认为是执行此操作的标准方法 - 尽管还有大量其他方法做吧。

另一种选择很简单:

 $("#myli")[0].slidedOut = true;
 alert($("#myli")[0].slidedOut);

Using jquery data is considered the standard way to do it - although there are tons of other ways to do it.

An alternative is simply:

 $("#myli")[0].slidedOut = true;
 alert($("#myli")[0].slidedOut);
戏舞 2024-10-19 09:17:27

另一种选择是使用 CSS 类。如果您并不真正保存数据(只是一个标志),或者想要更改这些

  • 或其子项的设计,那么这特别有用。
  • Another option is to use CSS classes. This is particularity useful if you don't really save data (just a flag), or want to change the design for these <li>s or their children.

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