1
$.ajax({
        type: 'GET',
        url: 'report.php',
        data: ({url: href})
 });

alert(href);

href = https://website.com

如何从 url 中删除 https?

4

1 回答 1

2

只需在 href 上使用 Javascript 的替换功能。

href.replace('https://','');
于 2012-07-17T10:50:55.610 回答