gpt4 book ai didi

javascript - 使用 Jquery .find() 遍历按类选择元素并存储 Prop

转载 作者:行者123 更新时间:2023-11-28 08:14:11 25 4
gpt4 key购买 nike

我正在尝试使用以下代码搜索元素“service-block”的后代以查找具有类“title”的特定元素。除了“未定义”之外,我无法让 var 分配任何东西。任何帮助将不胜感激 -

<div class="col-md-4">
<div id="service-block" class="wp-block default grey-glow">
<div class="figure">
<img alt="..." src="~/images/services/nav-icon-white.jpg" class="img-responsive">
</div>
<div class="wp-block-body services-text">
<h2 id="test" class="title">Lorem Ipsum <span class="heavy-header" style="color:#001990;">Lorem Ipsum</span> Lorem Ipsum</h2>
<p>Lorem Ipsum.</p>
</div>
</div>
</div>

$("#service-block").hover(function () {
var originalHeight = $(this).find('.title').prop("id");
});

最佳答案

这是你想要的吗?

$("#service-block").hover(function () {
var $elem = $(this).find('.title');
console.log("id of element: ", $elem.attr("id"));
console.log("height of element: ", $elem.height()); //added due to your variable name
});

关于javascript - 使用 Jquery .find() 遍历按类选择元素并存储 Prop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29090356/

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