如果我的网址是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>
我的问题是,如果网址为http://link-ads.blogspot.com/?url=http://stackoverflow.com/&adclient=12345678kkk1112
,当我想要http://stackoverflow.com/&adclient=12345678kkk1112
之前的网址时,代码会将网址提取为&adclient=
,这意味着我只想提取http://stackoverflow.com/
答案 0 :(得分:1)
我建议使用正则表达式:
var url = "http://link-ads.blogspot.com/?url=http://stackoverflow.com/&adclient=12345678kkk1112"
url.match(/url=([^&]+)/)[1]