使用 jQuery prev() 方法抓取 H2 的文本?

发布于 2024-10-30 07:33:40 字数 551 浏览 1 评论 0原文

似乎无法让这个工作。有什么想法吗?

我试图在使用输入字段作为起始位置时抓取

之间出现的文本。

jQuery:

$(".title input").each(function(){
    alert( $(this).prev('h2').text() );
}

HTML:

<div class="tabbertab">
    <h2>English (US)</h2>
    <div class="title">
        <div>
            <label for="title">Title *</label>
        </div>
        <input id="title[en_US]" type="text" name="title[en_US]" value="" class="error">
</div>

Can't seem to get this working. Any ideas?

I'm trying to grab the text that appears between <h2></h2> while working with the input field as a starting location.

jQuery:

$(".title input").each(function(){
    alert( $(this).prev('h2').text() );
}

Html:

<div class="tabbertab">
    <h2>English (US)</h2>
    <div class="title">
        <div>
            <label for="title">Title *</label>
        </div>
        <input id="title[en_US]" type="text" name="title[en_US]" value="" class="error">
</div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

妄断弥空 2024-11-06 07:33:40
$(".title input").each(function(){
    alert( $(this).parent().prev('h2').text() );
}
$(".title input").each(function(){
    alert( $(this).parent().prev('h2').text() );
}
北斗星光 2024-11-06 07:33:40

使用 .prev() 访问同级。通过将 .parent() 添加到链中,您可以访问父元素的同级元素。

$(".title input").each(function() {
    alert( $(this).parent().prev('h2').text() );
});

http://jsfiddle.net/4BvJc/

Using .prev() accesses siblings. By adding .parent() to the chain you access siblings of the parent element.

$(".title input").each(function() {
    alert( $(this).parent().prev('h2').text() );
});

http://jsfiddle.net/4BvJc/

嘿嘿嘿 2024-11-06 07:33:40
jQuery("h2").each(function(i, obj){            
     alert(obj.textContent);                
});

尝试这样的事情

jQuery("h2").each(function(i, obj){            
     alert(obj.textContent);                
});

Try something like this

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文