我有我的 Facebook 分享脚本:
<script>
$(document).ready(function(){
$('#share_button').click(function(e){
e.preventDefault();
FB.ui(
{
method: 'feed',
name: 'This is the content of the "name" field.',
link: ' http://www.hyperarts.com/',
picture: 'http://www.hyperarts.com/external-xfbml/share-image.gif',
caption: 'This is the content of the "caption" field.',
description: 'This is the content of the "description" field, below the caption.',
message: ''
});
});
});
</script>
但是,我想从数据库中获取“名称”、“链接”、“图片”等的值,也许是一个简单的访问 mbd 文件。我将使用 Classic ASP 来连接这个数据库...
有办法做到这一点吗?