我正在尝试替换可以在此处设置的通用“保存到foursquare”按钮:https ://foursquare.com/buttons/savetofoursquare
我想用我自己的自定义四方形按钮(Fairhead Creative 的 .svg 版本,由 Zurb 基金会在此处分发:http: //zurb.com/playground/social-webicons)替换它,并且不让脚本自动清除和替换我的自定义按钮带有预先打包的foursquare保存按钮。
我很确定我只需要编写自己的解决方案,使用这里的文档:https ://developer.foursquare.com/overview/widgets - 但我有点困惑。希望那里有例子。
我在一页上还有几个按钮,引用了各种电子名片(多个博物馆位置)。为此,我使用了此处答案中的 data-context 属性:Multiple Foursquare 'save' buttons on one page。这一切都在起作用。
我正在使用我自己的html:
<span id="venue1-foursquare" class="fc-webicon foursquare" data-context="venue1_vcard">save Venue 1 to foursquare</span>
稍后在页面上:
<span id="venue2-foursquare" class="fc-webicon foursquare" data-context="venue2_vcard">save Venue 2 to foursquare</span>
这该怎么做?