2010-05-28 4 views

Répondre

0

Vous voudrez peut-être essayer de créer votre iframe dynamiquement:

<html> 
<head> 
    <script type="text/javascript"> 
    function insertFbButton() { 
    f = document.createElement("IFRAME"); 
    f.setAttribute(
    "src", 
    "http://www.facebook.com/plugins/like.php?" 
    + window.location.href 
    + "&amp;layout=button_count&amp;show_faces=true&amp;width=450" 
    + "&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=21" 
    ); 
    f.style.width = 450+"px"; 
    f.style.height = 210+"px"; 
    document.body.appendChild(f); 
    } 
    </script> 
</head> 
<body> 
    <p>Content</p> 
    <script>insertFbButton();</script> 
    <p>Content</p> 
</body> 
</html> 
0

Utilisez window.location.href ou expressions window.location.pathname si vous n'avez pas besoin de l'URL complète