我正在使用Blogger构建博客,我正在尝试使用简单的图像链接创建自己的共享按钮。我有页面的网址,即:
For lngWord = 1 To ActiveDocument.Words.Count
'Ignore any document "Words" that aren't real words (CR, LF etc)
If Len(Trim(ActiveDocument.Words(lngWord))) > 1 Then
If ActiveDocument.Words(lngWord).Font.Name = Typeface Then
lngCountIt = lngCountIt + 1
End If
End If
Next lngWord
MsgBox "Number of " & Typeface & " words: " & lngCountIt
我想将页面的网址插入Facebook共享网址,即“https://www.facebook.com/sharer/sharer.php?u=”,其方式是网页的网址会在共享网址之后。 到目前为止,我已经尝试过一些方法,没有给出正确的结果。 这是我想要插入网址的地方:
"data:post.url"
非常感谢!
答案 0 :(得分:0)
您需要使用expr:
href
属性来获取博主的数据
<a expr:href='"http://www.facebook.com/sharer.php?u=" + data:post.url' target='_blank'><img alt='Share to Facebook' border='0' height='30' src='https://lh3.googleusercontent.com/-8ZBAqJOFFw0/WHdENG3DINI/AAAAAAAAARA/jabYU0WscU0zwW7I_HwsF0NWkdPI2NkwACEw/w140-h140-p/1484232837_2_-_Facebook.png' width='30'/></a>
另一个注意事项:为什么要使用两个锚元素,一个就足够了。