This is sort of a continuation of an earlier question.
I have some html.
<h3>things that are red:</h3>
<ul>
<li><a href="html://www.redapples">Red Apples</a></li>
<li><a href="html://www.redmeat">Red Meat</a></li>
<li><a href="html://www.redcar">All Red Cars</a></li>
</ul>
I want to use javascript to wrap all of the text elements with a element
The result I am looking for.
<h3>things that are <span class="red">red</span>:</h3>
<ul>
<li><a href="html://www.redapples"><span class="red">Red</span> Apples</a></li>
<li><a href="html://www.redmeat"><span class="red">Red</span> Meat</a></li>
<li><a href="html://www.redcar">All <span class="red">Red</span> Cars</a></li>
</ul>
After a lot of thought I realized that I had to distinguish between text nodeTypes and Element NodeTypes while navigating the DOM. I used some of the feedback from my earlier question, and wrote this little script.
function walkTheDOM(node, func) {
func(node);
node = node.firstChild;
while (node) {
walkTheDOM(node, func);
node = node.nextSibling;
}
}
walkTheDOM(document.body, function (node) {
// Is it a Text node?
if (node.nodeType === 3) {
var text = node.data.trim();
// Does it have non white-space text content?
if (text.length > 0) {
node.data = text.replace(/(RED)/gi, '<span class="red">$1</span>');
}
}
});
This does pretty much what I want it to do, except the output is text rather than html. So my question is this, is there an easy way to fix this line
node.data = text.replace(/(RED)/gi, '<span class="red">$1</span>');
So that the output is html?
This is sort of a continuation of an earlier question.
I have some html.
<h3>things that are red:</h3>
<ul>
<li><a href="html://www.redapples.">Red Apples</a></li>
<li><a href="html://www.redmeat.">Red Meat</a></li>
<li><a href="html://www.redcar.">All Red Cars</a></li>
</ul>
I want to use javascript to wrap all of the text elements with a element
The result I am looking for.
<h3>things that are <span class="red">red</span>:</h3>
<ul>
<li><a href="html://www.redapples."><span class="red">Red</span> Apples</a></li>
<li><a href="html://www.redmeat."><span class="red">Red</span> Meat</a></li>
<li><a href="html://www.redcar.">All <span class="red">Red</span> Cars</a></li>
</ul>
After a lot of thought I realized that I had to distinguish between text nodeTypes and Element NodeTypes while navigating the DOM. I used some of the feedback from my earlier question, and wrote this little script.
function walkTheDOM(node, func) {
func(node);
node = node.firstChild;
while (node) {
walkTheDOM(node, func);
node = node.nextSibling;
}
}
walkTheDOM(document.body, function (node) {
// Is it a Text node?
if (node.nodeType === 3) {
var text = node.data.trim();
// Does it have non white-space text content?
if (text.length > 0) {
node.data = text.replace(/(RED)/gi, '<span class="red">$1</span>');
}
}
});
This does pretty much what I want it to do, except the output is text rather than html. So my question is this, is there an easy way to fix this line
node.data = text.replace(/(RED)/gi, '<span class="red">$1</span>');
So that the output is html?
Share Improve this question edited May 23, 2017 at 12:31 CommunityBot 11 silver badge asked Sep 16, 2014 at 1:31 increase Matherincrease Mather 1391 gold badge2 silver badges6 bronze badges 4-
1
node.innerHTML = text.replace...
Shouldn't have been very difficult to research this yourself – charlietfl Commented Sep 16, 2014 at 1:35 -
@charlietfl: That will break for
<li>>/li< bug</li>
, for example, unless you make sure to reencode things.document.createElement
way is safer (but definitely more cumbersome). – Amadan Commented Sep 16, 2014 at 1:37 - 1 Are you sure the innerHTML is an object at this level? I've tried adding it, and I get nothing. – increase Mather Commented Sep 16, 2014 at 1:45
- 1 @charlieftl Yeah, innerHTML isn't a property of Text Objects. So the question remains, is there an easy way convert a text object into an html object. – increase Mather Commented Sep 16, 2014 at 1:53
3 Answers
Reset to default 7What you need to do to make this generic, as I have hinted in the ment, is to create a new element, put the text node into it, then replace the text node with the new element.
function wrapTextNode(textNode) {
var spanNode = document.createElement('span');
spanNode.setAttribute('class', 'red');
var newTextNode = document.createTextNode(textNode.textContent);
spanNode.appendChild(newTextNode);
textNode.parentNode.replaceChild(spanNode, textNode);
}
[].forEach.call(document.querySelectorAll('a'), function(el) {
var textNode = el.childNodes[0];
wrapTextNode(textNode);
});
EDIT: fiddle
DEMO
$(function() {
$('li a').html(function(i,html) {
return html.replace(/(RED)/gi, '<span class="red">$1</span>');
});
});
The answer from Amadan is perfect to manipulate (convert from textnode to element for css purposes) for instance some VAT-text-information in the cart-totals section on the cart page in the storefront-child-theme in woomerce in wordpress. There is no other usual or better way of changing this little piece of textnode that lies within a div containing different textnodes and elementnodes. So i wanted to say thanks for this solution.
Of course, this only works if you use only one language.
var cart_totals = document.querySelector(".cart_totals .shop_table");
if( !!cart_totals ) {
for( var x = 0; x < cart_totals.childNodes.length; x++ ) {
if( cart_totals.childNodes[x].nodeType === 3 &&
cart_totals.childNodes[x].nodeValue.includes( 'inkl. 19 % MwSt.' ) ) {
var textNode = cart_totals.childNodes[x];
wrapTextNode( textNode ); /* see function from Amadan above */
}
}
}
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743700336a4492459.html
评论列表(0条)