gpt4 book ai didi

jquery - 使用 JQuery 获取此值时遇到问题

转载 作者:行者123 更新时间:2023-12-01 06:35:44 26 4
gpt4 key购买 nike

在此类代码中悬停在 .avatar 上时获取此值时遇到问题:.data("blog-title"):

<a target="_blank" href="http://somwhere.com/"  class="frame">
<img alt="" class="avatar" src="http://something.com/pong.png/>
</a>
<script type="text/javascript">
some script stuff
</script>

<div class="note">
<a target="_blank" class="preview" href="http://something.com/blogpost/bar"><img src="http://http://something.com/some.gif" /></a>
<a href="#" data-blog-title="fooname" class="block">foobar</a>
</div>

尝试过各种父项、发现等等。就是解决不了。

最佳答案

试试这个:-

假设你有多个这样的部分,你可以尝试这种方式

$('.avatar').hover(function(){
var value = $(this)
.closest('.frame') // Get to the parent .frame
.siblings('.note') // look for its sibling .note
.find('.block') //find the anchor with class.block
.data('blog-title'); //get the value. If this attribute value is being changed dynamically after the load then you need to use .attr('data-blog-title')

});

否则就这样做

 $('.block').data('blog-title');

http://jsfiddle.net/kNntX/

记得在此处关闭引号

<img alt="" class="avatar" src="http://something.com/pong.png/">
^----------

关于jquery - 使用 JQuery 获取此值时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16930018/

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