我无法仅获得 href 的确切值。这是代码:
Link:
<a href="monthly"></a>
Script:
'a': function(target, process){
if(process == "stripe"){
document.location.href = "/accounts/stripe/payment"+target[0].href;
}else{
......
}
},
如果我运行它,输出将是:
http://localhost:8000/accounts/stripe/paymenthttp://localhost:8000/monthly/
请注意,本地主机正在复制。如何在没有本地主机的情况下仅获取 href 中的“每月”?我只尝试目标,但它是未定义的。我尝试 target[1] 但它不起作用。