在 div 中使用唯一的 id 在 jQuery 中显示/隐藏

发布于 2024-11-15 14:31:29 字数 732 浏览 2 评论 0原文

我在编写代码来捕获“id”名称以打开请求的 .

我有三个盒子:

<div>
<h3>Box 1</h3>
<p><a id="box2" href="#">Show Box 2</a></p>
</div>

<div id="box2">
<h3>Box 2</h3>
<p><a id="box3" href="#">Show Box 3</a></p>
</div>

<div id="box3">
<h3>Box 3</h3>
<p>TBD</p>
</div>

我试图从标签中捕获“id”,以使用该“id”打开受尊重的内容。例如, id="box2" 将打开 div id="box2"。

$(document).ready(function() {
$("div#" + getName).hide();
$('a#' + getName).click(function() {
    $('div#' + getName).show();
    return false;
  });
});

我不确定 jQuery 是否对单引号或双引号敏感,或者我是否错误地处理了这个问题。任何帮助表示赞赏。祝你度过美好的一天!

I'm having some difficulties writing code to catch the 'id' name from the to open the requested .

I have three boxes:

<div>
<h3>Box 1</h3>
<p><a id="box2" href="#">Show Box 2</a></p>
</div>

<div id="box2">
<h3>Box 2</h3>
<p><a id="box3" href="#">Show Box 3</a></p>
</div>

<div id="box3">
<h3>Box 3</h3>
<p>TBD</p>
</div>

And I am trying to catch the 'id' from the tag to open the respected with that 'id'. For example, a id="box2" will open div id="box2".

$(document).ready(function() {
$("div#" + getName).hide();
$('a#' + getName).click(function() {
    $('div#' + getName).show();
    return false;
  });
});

I'm not sure if jQuery is sensitive to single or double quotes, or if I am approaching this incorrectly. Any help is appreciated. Have an outstanding day!

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

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

发布评论

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

评论(2

入怼 2024-11-22 14:31:29

您不能对一页上的多个元素使用相同的“id”值。这就是“id”的意思。

将一个元素与另一个元素相关联的一种方法是使用“data-”属性:

<button data-friend="something">Click Me</button>

<div id='something'> ... </div>

jQuery 库将通过“.data()”API 为您提供“data-”属性的值:

var friend = $('button').data('something');
var friendDiv = $('#' + friend);

您还可以使用类值来将元素联系在一起。

You can't use the same "id" value for more than one element on a page, period. That's what "id" means.

One way to relate one element to another is to use a "data-" attribute:

<button data-friend="something">Click Me</button>

<div id='something'> ... </div>

The jQuery library will give you the value of a "data-" attribute via the ".data()" API:

var friend = $('button').data('something');
var friendDiv = $('#' + friend);

You can also use class values to relate elements together.

心欲静而疯不止 2024-11-22 14:31:29

ID 必须是唯一的。尝试使用类作为选择器。

$("div." + getClass).hide();

Id must be unique. Try using a class as a selector.

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