标题不适用于 decodeURIComponent 和 space
title does not work with decodeURIComponent and space
我正在尝试使用 javasctipt 代码行编写,但 decodeURIComponent 忽略了 %20 (space) 之后的所有内容。如何解决?
$(".intome").append($('<img title=' + decodeURIComponent(filename) + ' src=' + dir + ' />'));
而不是:
<img title:"some text" src="img.png">
我明白了:
<img title:"some" text src="img.png">
JSFiddle:https://jsfiddle.net/emnLy1t5/9/
我绝对是新手,所以非常感谢任何建议。另外我的母语不是英语,所以我很抱歉我的英语不好...
将 decodeURIComponent(filename)
的输出包装在 quotes 中。
$(".intome").append(
$('<img title="' + decodeURIComponent(filename) + '" src=' + dir + ' />')
);
我正在尝试使用 javasctipt 代码行编写,但 decodeURIComponent 忽略了 %20 (space) 之后的所有内容。如何解决?
$(".intome").append($('<img title=' + decodeURIComponent(filename) + ' src=' + dir + ' />'));
而不是:
<img title:"some text" src="img.png">
我明白了:
<img title:"some" text src="img.png">
JSFiddle:https://jsfiddle.net/emnLy1t5/9/
我绝对是新手,所以非常感谢任何建议。另外我的母语不是英语,所以我很抱歉我的英语不好...
将 decodeURIComponent(filename)
的输出包装在 quotes 中。
$(".intome").append(
$('<img title="' + decodeURIComponent(filename) + '" src=' + dir + ' />')
);