我有一系列包含地图数据和链接的容器。我使用 jquery 循环通过这些容器来获取某些数据。在这种情况下,我试图获取链接的属性。
我使用以下 jquery 来获取每个容器的所有 html。
$(document).ready(function () {
$(".map_container").each(function () {
alert($(this).find(".map_content").html());
});
});
这会创建一个带有几行 html 的警报,我关心的行在下面。
<a class="map_link" value="67" location="home"> Visit home </a>
我怎么能提醒位置属性的值。所以在这种情况下是“家”。
就像是
$(this).find(".map_content").attr("location");
或者如果可能的话,只需找到位置,而不必先找到 map_content div。所以
$(this).find.attr("location");
或者
$(this).find("a").attr("location");
获取 map_link 链接的位置属性的正确方法是什么?
谢谢你的帮助