我在Joomla中尝试过这个脚本,为每个数字添加一个类,以便我可以用CSS格式化它们:
<script>
(function($) {
$(function() {
$('h1,h2,h3,h4,h5,h6,p,strong,i,em,b,span,sup,sub').each(function() {
var el = $(this),
html = el.html();
html = html.replace(/(\d)/gi, "<span class='number'>$1</span>");
el.html(html);
});
});
})(jQuery);
</script>
它工作正常,但我遇到了链接有问题,例如:
www.miosito.it/index.php&articleid=2
在这种情况下,它会:
www.miosito.it/index.php&articleid=<span class="number">2</span>
所以链接破了。我怎么能编辑脚本来修复它?