0

我想知道谷歌用于社交插件的这个自定义标签

我在我的网站上添加了 +1 按钮有这个自定义代码

<g:plusone href="https://plus.google.com/----------1212"></g:plusone>

----------1212是谷歌页面的id

我们如何为我们的页面创建这种类型的自定义标签

like<g:plusone />是一个标签,我们如何创建客户喜欢<mytag />或其他

4

1 回答 1

0

一个简单的方法是使用 jQuery。这个例子将把 <mytag> 变成一个大的红色标题。你可以做各种其他的东西,比如添加图像。

Javascript:

$(document).ready(function() {
    $('mytag').each(function() {
        $(this).replaceWith('<span style="font-size: 24px; font-weight: bold; color: red;">' + $(this).html() + '</span>');
    });
});

HTML:

<mytag>This is a large, red font</mytag>
于 2012-05-07T12:02:18.930 回答