当我首先过滤数据时,它的URL就是这种类型

"http://localhost/computers?specs=Category:intel!!0!!".


但是当我第二次过滤时,它的URL会像这样

"http://localhost/computers??specs=Category:intel!!0!!".


因此,如果我第二次过滤,请删除'??' (问号)中的二分之一。这是代码
`

<script type="text/javascript">
        var currURL = window.location.href;

                String.prototype.endsWith = function (currURL) {
                    var d = this.length - currURL.length;
                    return d >= 0 && this.lastIndexOf(currURL) === d;
                };
</script>


“要删除尾部吗?”从网址(如果有)

最佳答案

试试这个

Url = url.replace(“ ??” ,?)

关于javascript - 从网址的两个相同词中删除一个词,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39806731/

10-09 23:32