如何使用jQuery从url替换加号到空格?

时间:2017-10-13 10:41:28

标签: jquery

这是我的测试网址

index.html?n=abc+def

所以,现在从url获取abc + def,但我想获取'abc def'(空格不是加号)。

任何人都给我正确的解决方案。

3 个答案:

答案 0 :(得分:3)

使用简单的javascript replace()功能,如下所示

var str = "abc+def";
str = str.replace("+"," ");
console.log(str);

答案 1 :(得分:0)

var a = 'abc+def'
a = a.replace('+', ' ')

答案 2 :(得分:0)

private static Pixmap getScreenshot(int x, int y, int width, int height) {

    final Pixmap pixmap = ScreenUtils.getFrameBufferPixmap(x, y, width, height);

    ByteBuffer pixels = pixmap.getPixels();
    for(int i = 4; i < pixels.limit(); i += 4) {
        pixels.put(i - 1, (byte) 255);
    }

    int numBytes = width * height * 4;
    byte[] lines = new byte[numBytes];
    int numBytesPerLine = width * 4;
    for(int i = 0; i < height; i++) {
        pixels.position((height - i - 1) * numBytesPerLine);
        pixels.get(lines, i * numBytesPerLine, numBytesPerLine);
    }
    pixels.clear();
    pixels.put(lines);
    pixels.clear();

    return pixmap;
}