jQuery 获取文本
我有一个返回一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
$('some text').text()
应该可以完成这项工作,或者在您的情况下:$('<span class="opt">some text</span>').text()
should do the job or in your case:如果要对 HTML 字符串进行 jQuery 操作,请先使用 jQuery 将其转换:
请参阅 API for解释其工作原理。
If you want to do jQuery operations on a string of HTML, use jQuery to convert it first:
See the API for an explanation of how this works.
这将获取文本“
...
”,将其转换为 jQuery 对象,并提取文本,留下标签。That will take the text "
<span>...</span>
", convert it into a jQuery object, and extract the text, leaving behind the tags.