我需要两件事!任务1:
实际网址(URL1):
www.domain.com/reg.php?name=abc&token=12ab ref:name
我只需要提取这个(URL2):
www.domain.com/reg.php?name=abc
怎么做?
任务 2:
我想再次使用 URL2 创建两个链接。结果应如下所示
派生 URL1:
www.domain.com/reg.php?name=abc&token=44BB ref:home
派生 URL2:
www.domain.com/reg.php?name=abc&token=44BB ref:nav
我想在 reg.php 页面上插入两个链接,这些链接是 www.domain.com/reg.php?name=abc&token=44BB ref:home & www.domain.com/reg.php?name=abc&token=44BB ref :导航
注意:name=abc中的“ abc ”会根据自己的名字而变化,所以必须从URL中获取,其他的都是固定的
我的代码:任务 1:
<script>
alert(window.location.protocol + '//' + window.location.hostname + window.location.pathname + variable);
</script>
任务 2:
<form id="links" action='' method='get'>
<input type='hidden' name='token' id='token' value="44BB"/>
<input type="button" class='small-button' id='ref' value='home' onClick="parent.location= document.URL + 'ref:home'" />
<input type="button" class='small-button' id='ref' value='nav' onClick="parent.location= document.URL + 'ref:nav'" />
</form>