admin管理员组文章数量:1344559
I want to replace text with an image using jQuery. I have been using the .replace function to replace text with more text. How would I replace the text with an html tag, like an <img> tag.
Here is my code:
function wow() {
$('.messageBody').each(function() {
var text = $(this).text();
var image = '<img class = "emote" src = "trump.png">'
$(this).text(text.replace(':trump:', image.outterHTML));
});
}
setInterval(wow, 1000);
Here is the HTML:
<span class="messageBody">:trump:</span>
I want to replace text with an image using jQuery. I have been using the .replace function to replace text with more text. How would I replace the text with an html tag, like an <img> tag.
Here is my code:
function wow() {
$('.messageBody').each(function() {
var text = $(this).text();
var image = '<img class = "emote" src = "trump.png">'
$(this).text(text.replace(':trump:', image.outterHTML));
});
}
setInterval(wow, 1000);
Here is the HTML:
<span class="messageBody">:trump:</span>
Share
Improve this question
edited Oct 17, 2016 at 1:28
Dave Thomas
3,8472 gold badges36 silver badges44 bronze badges
asked Oct 16, 2016 at 23:16
ariagnoariagno
6012 gold badges17 silver badges30 bronze badges
3 Answers
Reset to default 7If you use .html
instead of .text
it will work. Change this line:
$(this).text(text.replace(':trump:', image.outterHTML));
to this:
$(this).html(text.replace(':trump:', image));
Note: because image
is a string you don't need the .outerHTML
.
If the messageBody
has more than just text inside (it contains HTML) then you'll also want to change this line:
var text = $(this).text();
to this:
var text = $(this).html();
so the full code would be:
function wow() {
$('.messageBody').each(function() {
var text = $(this).html();
var image = '<img class="emote" src="trump.png">';
$(this).html(text.replace(':trump:', image));
});
}
setInterval(wow, 1000);
Can use html(function)
which also will loop all instances
$('.messageBody').html(function(_, existingHtml){
var image = '<img class = "emote" src = "trump.png">'
return existingHtml.replace(':trump', image);
});
Using text()
strips any html tags
Change your code to:
function wow() {
$('.messageBody').each(function() {
var text = $(this).text();
var image = '<img class = "emote" src = "trump.png">'
$(this).html(text.replace(':trump:', image));
});
}
setInterval(wow, 1000);
本文标签: javascriptUsing replace to replace text with HTMLStack Overflow
版权声明:本文标题:javascript - Using .replace to replace text with HTML? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743799096a2540977.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论