您好,我有一个带有名为 rokcomments 的插件的 joomla 站点。这个插件可以在我的网站上启用 livefyre 评论。我正在尝试将文本转换为表情符号以处理 livefyre 评论,但我没有太多的 javascript 经验并且没有任何运气。我找到了加载 livefyre 评论的 php,它是:
elseif ($system == 'livefyre') {
// livefyre comments
if ($this->commentpage == false) {
if (!defined('ROKCOMMENT_COUNT'))
{
$headscript = '
<script type="text/javascript" src="http://zor.livefyre.com/wjs/v1.0/javascripts/CommentCount.js"></script>';
$document->addCustomTag($headscript);
define('ROKCOMMENT_COUNT', 1);
}
$output = '
<div class="rk-commentcount{rk-icon}">
<span class="livefyre-commentcount"
data-lf-site-id="{account}"
data-lf-article-id="{post-id}">0 Comments
</span>
</div>';
} else {
$output = "
<!-- START: Livefyre Embed -->
<div id='livefyre-comments'></div>
<script type='text/javascript' src='http://zor.livefyre.com/wjs/v3.0/javascripts/livefyre.js'></script>
<script type='text/javascript'>
(function () {
var articleId = '{post-id}';
fyre.conv.load({}, [{
el: 'livefyre-comments',
network: 'livefyre.com',
siteId: '{account}',
articleId: articleId,
signed: false,
collectionMeta: {
articleId: articleId,
url: fyre.conv.load.makeCollectionUrl(),
}
}], function() {});
}());
</script>
<!-- END: Livefyre Embed -->";
然后我创建了一个 js 文件并尝试在此页面中链接它,但仍然没有运气。这是我在 js 文件中的内容
<script>
function myFunction() {
var str = document.getElementById('livefyre-comments').innerHTML;
var res = str.replace(":)", '<img src="http://website.com/images/emoticons/emoticon_smiley.gif');
document.getElementById('livefyre-comments').innerHTML = res;
}
</script>
我不知道该怎么做才能做到这一点?任何帮助是极大的赞赏。