gpt4 book ai didi

JQUERY 选择器不适用于具有相同名称的多个 id

转载 作者:行者123 更新时间:2023-12-01 06:32:58 28 4
gpt4 key购买 nike

我是 JQUERY 的新手,我最近编写了一小段代码,其中我遇到了一个问题:页面中有两个具有相同 id 的 anchor ,但 albid(自定义属性)值不同。但在这种情况下,jquery 函数仅适用于第一个 anchor ,不适用于第二个 anchor 。这是代码

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#test").click(function(){
$("#div1").load("test.php?"+$("#test").attr("albid"));
});
});
</script>
</head>
<body>

<div id="div1"><h2>Let jQuery AJAX Change This Text</h2></div>
<a albid="12" id="test"/>hasnain</a>
<a albid="2" id="test" />naanan</a>
<button>Get External Content</button>

</body>
</html>

如何解决这个问题谢谢你

最佳答案

来自jQuery API Documentation :

id selector

Description: Selects a single element with the given id attribute.

如果您想选择多个元素,您可以为它们提供相同的class="test",然后使用:

$(".test").click(function(){
$("#div1").load("test.php?" + $(this).attr("albid"));
});

请注意函数内 $(this) 的使用。

关于JQUERY 选择器不适用于具有相同名称的多个 id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37906158/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com