我正在添加一个发送按钮,用于在页面选项卡上的画布应用程序中向朋友发送链接:
$(anchorTag).bind('click',function(e){
//console.log($(this));
e.preventDefault();
FB.ui({
method: 'send',
name:$(this).attr('title'),
display: 'iframe',
link: $(this).attr('href')
});
});
我想要一个图标,就像我的按钮的图像一样,但我需要将文本本地化为不同的语言。我是否需要使用 CSS 制作我自己的按钮,或者这个按钮是否可以通过 API 获得?