如何剥离 ?url= 并设置为 href 变量?

发布于 2024-12-12 06:10:32 字数 502 浏览 0 评论 0原文

我目前有这个 jquery 但它不起作用。如果它有帮助,我的网址是 http://link-ads.blogspot.com/

jquery 还会确保 href 具有 http:// > 如果 ?url= 中不存在

<script type='text/javascript'>
var url = "document.location.href"
url = url.split('?url=')[1].split(/\?|\%3F/)[0];
if (url.indexOf('http://') == -1)  url = 'http://' + url;
$("a#download").attr("href",url);
  </script>

<a href="" id="download" class="button">continue</a>

I currently have this jquery but it won't work. if it helps my url is http://link-ads.blogspot.com/

the jquery also makes sure the href has http:// if not present in ?url=

<script type='text/javascript'>
var url = "document.location.href"
url = url.split('?url=')[1].split(/\?|\%3F/)[0];
if (url.indexOf('http://') == -1)  url = 'http://' + url;
$("a#download").attr("href",url);
  </script>

<a href="" id="download" class="button">continue</a>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽清梦 2024-12-19 06:10:32

两个问题,

var url = "document.location.href"

应该更改

var url = document.location.href

我注意到在执行此行之前还

url = url.split('?url=')[1].split(/\?|\%3F/)[0];

您应该确保这可以通过类似的操作实现,

if (url.indexOf("?url=") != -1 )

否则您将得到异常,因为数组中不会有 [1] 元素

I notice two issues

var url = "document.location.href"

should be changed to

var url = document.location.href

also before you do this line

url = url.split('?url=')[1].split(/\?|\%3F/)[0];

you should make sure that this is possible with something like

if (url.indexOf("?url=") != -1 )

otherwise you will get an exception because there won't be a [1] element in the array

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文