我正在尝试将我的网页的当前网址绑定到此HTML 我怎么能这样做
答案 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
+ "&layout=button_count&show_faces=true&width=450"
+ "&action=like&font=arial&colorscheme=light&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.href
或window.location.pathname
表达式