I have the following script which I am trying to target any link with a class of .button
to add a <span>
tag around the text element. For example:
<a class="button" href="#">Read More</a>
Becomes
<a class="button" href="#"><span>Read More</span></a>
My script:
// insert span into anchor
"use strict";
var anchor = document.querySelector(".button");
var html = anchor.innerHTML;
anchor.innerHTML = "<span>" + html + "</span>";
This works, but only on the first instance of the page?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…