标签: 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();
答案 0 :(得分:2)
只需使用decodeURI(uri)解码即可。
decodeURI(uri)
那将是console.log('src', decodeURI(img.src));。
console.log('src', decodeURI(img.src));
更新了FIDDLE