gpt4 book ai didi

javascript - 如何将此代码添加到我已有的代码中才能使该代码正常工作

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

我想将第二个代码实现到第一个代码中,以便它按预期工作。我不确定该怎么做当前代码:

<script type="text/javascript">
!function(){
var campaign_link = ""; // REPLACE WITH YOUR LINK
var t;
try{
for(t=0;10>t;++t)history.pushState({},"","#");
onpopstate=function(t){t.state&&location.replace(campaign_link + window.location.search.substring(1))}}
catch(o){}
}();
</script>

我想添加到现有代码中的代码;

window.addEventListener("popstate", function(e) {
window.location.href = location.href;
});

最佳答案

您可以像这样将此函数添加到当前脚本中。但是,您可能希望将 location.href 存储在 var 中,而不是 window.location

<script type="text/javascript">
function(){
var campaign_link = ""; // REPLACE WITH YOUR LINK
var t;
try{
for(t=0;10>t;++t)history.pushState({},"","#");
onpopstate=function(t){t.state&&location.replace(campaign_link + window.location.search.substring(1))}}
catch(o){}
}();

window.addEventListener("popstate", function(e) {
window.location.href = location.href;
});

</script>

关于javascript - 如何将此代码添加到我已有的代码中才能使该代码正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45420072/

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