Ajax - 在get之前修改数据字符串

时间:2012-07-17 10:48:15

标签: jquery

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

alert(href);

href = https://website.com

如何从网址中删除https?

1 个答案:

答案 0 :(得分:2)

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

href.replace('https://','');