如何从页面 URL 设置 href 值?

发布于 2024-12-12 00:20:34 字数 567 浏览 0 评论 0原文

如果网址是 www.mysite.com/?url=www.google.com?client=xxxxxx

且页面上的 a href 是

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

如何设置 href作为 http://www.google.com 通过从 ?url=www.google.com 中提取它来制作...

<a href="http://www.google.com" id="download" class="button">link</a>

还有还有一个因素:如果?url=www.google.com之后没有得到http:// ?url= 那么它应该被插入到 href 值中。

If the URL is www.mysite.com/?url=www.google.com?client=xxxxxx

and the a href on the page is

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

how could I set the href as http://www.google.com by extracting it from ?url=www.google.com to make...

<a href="http://www.google.com" id="download" class="button">link</a>

?

And there is one other factor: if the ?url=www.google.com hasn't got http:// after ?url= then it should be inserted in the href value.

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

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

发布评论

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

评论(1

谁人与我共长歌 2024-12-19 00:20:34

试试这个,很难提供明确的答案,因为我不确定您需要解析的 URL 中可能出现哪些字符,但这适用于您发布的 URL -

var url = "www.mysite.com/?url=www.google.com?client=xxxxxx"
url = url.split('?url=')[1].split(/\?|\%3F/)[0];
if (url.indexOf('http://') == -1)  url = 'http://' + url;
$("a#download").attr("href",url);

演示 - http://jsfiddle.net/J77J2/

Try this, it's hard to provide a definitive answer as I'm not sure what characters could appear in the the URL you need to parse but this will work with the URL you posted -

var url = "www.mysite.com/?url=www.google.com?client=xxxxxx"
url = url.split('?url=')[1].split(/\?|\%3F/)[0];
if (url.indexOf('http://') == -1)  url = 'http://' + url;
$("a#download").attr("href",url);

Demo - http://jsfiddle.net/J77J2/

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