作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用以下代码搜索元素“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/
我是一名优秀的程序员,十分优秀!