提取 src 并设置为 href 值...在 ?url= 之后和 &addclient= 之前
如果我的网址是 http://link-ads.blogspot.com/?url=http://stackoverflow.com/
下面的代码提取 http://stackoverflow.com/
<script type='text/javascript'>
$(document).ready(main);
function main()
{
$('#download, #imggg').attr('href', getIframeUrl() );
registerEvents();
resizeIframe();
}
function getIframeUrl()
{
var url = window.location.href;
var iframe_url = 'http://link-ads.blogspot.com/';
var param_start = url.indexOf("url=");
if( param_start != -1 )
iframe_url = url.substr(param_start+4,url.length-param_start-4);
if( iframe_url.indexOf("http://") == -1)
iframe_url = "http://" + iframe_url;
return iframe_url;
}
</script>
我的问题是,如果 url 是 http://link-ads.blogspot.com/?url=http://stackoverflow。 com/&adclient=12345678kkk1112
代码会将网址提取为http://stackoverflow.com/&adclient=12345678kkk1112
当我想要 &adclient=
之前的网址时,意味着我只希望它提取 http:// /stackoverflow.com/
If my url is http://link-ads.blogspot.com/?url=http://stackoverflow.com/
The code below extracts http://stackoverflow.com/
<script type='text/javascript'>
$(document).ready(main);
function main()
{
$('#download, #imggg').attr('href', getIframeUrl() );
registerEvents();
resizeIframe();
}
function getIframeUrl()
{
var url = window.location.href;
var iframe_url = 'http://link-ads.blogspot.com/';
var param_start = url.indexOf("url=");
if( param_start != -1 )
iframe_url = url.substr(param_start+4,url.length-param_start-4);
if( iframe_url.indexOf("http://") == -1)
iframe_url = "http://" + iframe_url;
return iframe_url;
}
</script>
my problem is if the url is http://link-ads.blogspot.com/?url=http://stackoverflow.com/&adclient=12345678kkk1112
the code will extract the url as http://stackoverflow.com/&adclient=12345678kkk1112
when I want the url before &adclient=
meaning I only want it to extract http://stackoverflow.com/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用正则表达式:
I'd suggest using a regular expression: