gpt4 book ai didi

javascript - 将 javascript 连接到 URL

转载 作者:行者123 更新时间:2023-11-28 21:23:46 26 4
gpt4 key购买 nike

以下是我拥有的 URL,我想用放置此代码的页面的 URL 更改 href 标签,我可以使用“window.location.href”获得它,但我想将其连接到 URL href标签的地方,我使用的是asp.net

<iframe src="http://www.XYZ.com/plugins/like.php?href=<?php echo rawurlencode(get_permalink()); ?>&amp;layout=standard&amp;show_faces=true&amp;width=550&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:550px; height:80px;" allowTransparency="true"></iframe>

我想替换这个href=<?php echo rawurlencode(get_permalink()); ?>有了当前页面的网址,我该如何实现这一目标,请告诉我?

最佳答案

<script type="text/javascript">
// set the param
var href="<?php echo rawurlencode(get_permalink()); ?>";
// get current location
var current_location = window.location.href;
// set the source of the iframe
document.getElementsByTagName('iframe')[0].src = current_location + '&href=' + href;
</script>

关于javascript - 将 javascript 连接到 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5550091/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com