我昨天写了一个关于 joomla truetypography 中奇怪字符的问题: How to fix truetyphography plugin in Joomla [é => e]
我还写道,我使用这段代码来修复它: //$("#content").html($("#content").html().replace("é", "e"));
但刚才我发现,虽然在某些页面上它运行得很好,但在其他页面上,这行代码改变了整个页面(在这段代码中包含头部、复杂模板、模块和大量内容:
<html>
<head>
<style type="text/css"></style>
</head>
<body>
<a href="mailto:xxx@xxx.pl">xxx@xxx.pl</a>
<span style="display:none;"></span>
//several links here - all mailto: that were on the page separated with such spans
</body>
</html>
当我检查源代码时,它看起来不错,但是当我单击“检查元素”(或任何英文)时,这就是我得到的。
任何想法,为什么有时会发生?
特拉瓦 ;)