我有以下Facebook片段,我用它来允许我的网站用户将信息发布到他们的Facebook墙上,作为经典asp页面的一部分。它绝对完美。 但是,我想传入一个变量以便在脚本中使用,以便帖子包含动态内容,但我无法弄清楚如何使用。
我在下面的示例中对document.getElementById(' vCarPrice')的使用并不起作用。
有谁知道我做错了什么?
<div id="fb-root">
</div>
<script>
window.fbAsyncInit = function() {
FB.init({appId: '<insert app id here>', status: true, cookie: true,
xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
<script type="text/javascript">
$(document).ready(function(){
$('#share_button').click(function(e){
e.preventDefault();
FB.ui(
{
method: 'feed',
name: 'Car Price News',
link: ' http://www.car.com/',
picture: 'http://www.car.com/logo.jpg',
caption: 'The Price of a saloon is now £' + **document.getElementById('vCarPrice')** + '. Buy Now!',
description: 'The place to be for all the latest car prices.',
message: ''
});
});
});
</script>
答案 0 :(得分:0)
此代码与文档的其余部分相比在哪里? document.getElementById()将返回一个HTML对象...根据您要提取的信息的标记类型,您可以执行类似document.getElementById('id')。innerHTML或.value的操作。或者其他什么来实际获得你想要的文本,而不是整个对象