如何取消img.src的自动编码?

时间:2014-05-26 14:02:38

标签: html image urlencode url-encoding

图像的'src'属性在分配时进行编码。有可能避免它吗?

示例:http://jsfiddle.net/GqQKv/

var img = new Image();
img.src ='http://example.com/whatever?s=Hampshire 123&co=USA'
console.log('src', img.src); // instead of spaces we have %20

ThanksALot();

1 个答案:

答案 0 :(得分:2)

只需使用decodeURI(uri)解码即可。

那将是console.log('src', decodeURI(img.src));

更新了FIDDLE