作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是原始的网络应用程序 - http://mathiasbynens.be/demo/email-obfuscator#code
我正在将它转换为 JavaScript 应用程序 -
function obfuscate_email() {
var email = document.OBFUSCATOR.email.value,
output = "";
if (!email) {
alert("Please enter an email address.");
} else {
if (document.OBFUSCATOR.reverse.checked) {
email = email.split("").reverse().join("");
output = "<span class=\"email\">";
}
if (document.OBFUSCATOR.encode.checked) {
for (var i = 0; i < email.length; i++) {
output += "&#" + email.charCodeAt(i) + ";";
}
} else {
output += email;
}
if (document.OBFUSCATOR.reverse.checked) {
output += "</span>";
}
document.getElementById("output").value = document.OBFUSCATOR.link.checked ? "<a href=\"mailto:" + output + "\">" + output + "</a>" : output;
document.getElementById("preview").innerHTML = document.getElementById("output").value;
}
}
但是当所有复选框都被选中时,它不能正常工作。我该如何解决这个问题?
它不起作用,因为 output
变成 <span class="email">html code</span>
这个函数使得output
href
属性。
最佳答案
要在 JavaScript 中反转字符串,don’t use email.split("").reverse().join("")
— 使用 Esrever ( online demo ):
esrever.reverse('foo@example.com');
// → 'moc.elpmaxe@oof'
要使用 HTML 实体对文本进行编码,您可以使用 the he JavaScript library (online demo)。
he.encode('foo@example.com', {
'encodeEverything': true
});
// → 'foo@example.com'
// or, to encode the already-reversed email address:
he.encode('moc.elpmaxe@oof', {
'encodeEverything': true
});
// → 'moc.elpmaxe@oof'
要回答您的问题,请尽量不要设置 innerHTML
,因为那样会有效地撤消 HTML 编码。改为设置 .textContent
。
关于javascript - 将 Mathias Bynens 的 obfuscate_email() PHP 函数转换为 JavaScript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20729433/
这是原始的网络应用程序 - http://mathiasbynens.be/demo/email-obfuscator#code 我正在将它转换为 JavaScript 应用程序 - function
我是一名优秀的程序员,十分优秀!