当前url javascript绑定到html

时间:2010-05-28 11:09:18

标签: javascript html

http://pastebin.com/KejQT7XQ

我正在尝试将我的网页的当前网址绑定到此HTML 我怎么能这样做

2 个答案:

答案 0 :(得分:0)

您可能想尝试动态创建iframe:

<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>

答案 1 :(得分:0)

如果您不需要完整网址,请使用window.location.hrefwindow.location.pathname表达式