-2
我使用AJAX,並在頁面中使用了這個腳本。 它在本地服務器上工作。但它不在現場服務器上工作。像按鈕不工作
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"
type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
var fb = document.createElement('fb:like');
fb.setAttribute("href","<?php echo 'http://bagstudio.co.uk/menu_details.php?pid='.$product_id; ?>")
fb.setAttribute("layout","button_count");
fb.setAttribute("show_faces","false");
fb.setAttribute("width","100");
fb.setAttribute("font","arial");
document.getElementById("FaceBookLikeButton").appendChild(fb);
//]]>
</script>
定義「不工作」。 – 2011-11-21 05:11:24
意味着像按鈕不在現場顯示,但工作和顯示在本地服務器上 –