JHtmlEmail::cloak 只能写入文档文本,不能像您的情况那样写入元素属性。如果你真的需要这个,你必须创建你自己的 JHtml 助手。这可以通过以下步骤来完成。
实现 Joomla 功能以隐藏属性中的电子邮件:
在 your_components/helpers/html/specialemail.php 创建帮助程序类:
<?php
defined('_JEXEC') or die;
abstract class JHtmlSpecialEmail
{
public static function cloak($id, $attribute, $mail)
{
// convert text
$mail = JHtmlSpecialEmail::_convertEncoding($mail);
// split email by @ symbol
$mail = explode('@', $mail);
$mail_parts = explode('.', $mail[1]);
// random number
$rand = rand(1, 100000);
$replacement = "\n <script type='text/javascript'>";
$replacement .= "\n <!--";
$replacement .= "\n var prefix = 'ma' + 'il' + 'to';";
$replacement .= "\n var path = 'hr' + 'ef' + '=';";
$replacement .= "\n var addy". $rand ." = '". @$mail[0] ."' + '@';";
$replacement .= "\n addy". $rand ." = addy". $rand ." + '". implode("' + '.' + '", $mail_parts) ."';";
$replacement .= "\n document.getElementById('$id').$attribute = addy$rand.replace(/&#(\d+);/g, function (m, n) { return String.fromCharCode(n); });";
$replacement .= "\n //-->";
$replacement .= '\n </script>';
return $replacement;
}
protected static function _convertEncoding($text)
{
// replace vowels with character encoding
$text = str_replace('a', 'a', $text);
$text = str_replace('e', 'e', $text);
$text = str_replace('i', 'i', $text);
$text = str_replace('o', 'o', $text);
$text = str_replace('u', 'u', $text);
return $text;
}
}
然后编写您的输入电子邮件元素,例如:
<input id="email_field" name="email" placeholder="" type="text" />
<?php JHTML::addIncludePath(JPATH_COMPONENT.DS.'helpers'.DS.'html'); ?>
<?php echo JHtml::_('specialemail.cloak', 'email_field', 'placeholder', 'email@domain.com'); ?>
它使用与原始 Joomla cloak 函数相同的 cloak 算法。它没有使用document.write
将电子邮件输出到文档,而是使用此答案中的片段来解码 ASCII 实体,然后直接将值设置为所选属性。