如何在jQuery中的div中获取span标签并分配文本?

问题描述 投票:24回答:5

我使用以下,

<div id='message' style="display: none;">
  <span></span>
 <a href="#" class="close-notify">X</a>
</div>

现在我想在div中找到跨度并为其分配文本...

function Errormessage(txt) {
    $("#message").fadeIn("slow");
    // find the span inside the div and assign a text
    $("#message a.close-notify").click(function() {
        $("#message").fadeOut("slow");
    });
}
jquery find elements
5个回答
52
投票

试试这个:

$("#message span").text("hello world!");

在你的代码中看到它!

function Errormessage(txt) {
    var m = $("#message");

    // set text before displaying message
    m.children("span").text(txt);

    // bind close listener
    m.children("a.close-notify").click(function(){
      m.fadeOut("slow");
    });

    // display message
    m.fadeIn("slow");
}

18
投票
$("#message > span").text("your text");

要么

$("#message").find("span").text("your text");

要么

$("span","#message").text("your text");

要么

$("#message > a.close-notify").siblings('span').text("your text");

4
投票

试试这个

$("#message span").text("hello world!");

function Errormessage(txt) {
    var elem = $("#message");
    elem.fadeIn("slow");
    // find the span inside the div and assign a text
    elem.children("span").text("your text");

    elem.children("a.close-notify").click(function() {
        elem.fadeOut("slow");
    });
}

0
投票
function Errormessage(txt) {
    $("#message").fadeIn("slow");
    $("#message span:first").text(txt);
    // find the span inside the div and assign a text
    $("#message a.close-notify").click(function() {
        $("#message").fadeOut("slow");
    });
}

0
投票

Vanilla JS,没有jQuery:

document.querySelector('#message span').innerHTML = 'hello world!'

适用于所有浏览器:https://caniuse.com/#search=querySelector

© www.soinside.com 2019 - 2024. All rights reserved.