$.ajax({
type: 'GET',
url: 'report.php',
data: ({url: href})
});
alert(href);
href = https://website.com
如何从 url 中删除 https?
$.ajax({
type: 'GET',
url: 'report.php',
data: ({url: href})
});
alert(href);
href = https://website.com
如何从 url 中删除 https?