jQuery 获取文本

发布于 2024-10-11 23:29:34 字数 402 浏览 0 评论 0原文

我有一个返回一些 html 的函数,如下所示:

return ("<span class='opt'>some text</span>");

我在 $.ajax 中的成功回调函数中使用它:

$.ajax({
    url: uri,
    cache: false,
    success: function(html){
       $(tag).append(format(html));
    }
});

html 给出 元素。我想只检索没有标签的文本。我尝试使用 format(html).text() 但它不起作用。有什么想法吗?

I have a function that returns some html like this:

return ("<span class='opt'>some text</span>");

I use it within the success callback function in $.ajax:

$.ajax({
    url: uri,
    cache: false,
    success: function(html){
       $(tag).append(format(html));
    }
});

html give the <span></span> element. I want to retrieve just the text without the tags. I tried it using format(html).text() but it does not work. Any ideas?

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

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

发布评论

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

评论(3

$('some text').text() 应该可以完成这项工作,或者在您的情况下:

$(tag).append($(format(html)).text());

$('<span class="opt">some text</span>').text() should do the job or in your case:

$(tag).append($(format(html)).text());
永不分离 2024-10-18 23:29:34

如果要对 HTML 字符串进行 jQuery 操作,请先使用 jQuery 将其转换:

var newContent = $(format(html)); // use the results of `format(html)` to make a jQuery selection
$(tag).append(newContent.text()); // use the jQuery text method to get the text value of newContent

请参阅 API for解释其工作原理

If you want to do jQuery operations on a string of HTML, use jQuery to convert it first:

var newContent = $(format(html)); // use the results of `format(html)` to make a jQuery selection
$(tag).append(newContent.text()); // use the jQuery text method to get the text value of newContent

See the API for an explanation of how this works.

浅笑轻吟梦一曲 2024-10-18 23:29:34
$(tag).append($(format(html)).text());

这将获取文本“...”,将其转换为 jQuery 对象,并提取文本,留下标签。

$(tag).append($(format(html)).text());

That will take the text "<span>...</span>", convert it into a jQuery object, and extract the text, leaving behind the tags.

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