Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
作为一项业务需求,我希望%在 href.For 中使用锚标记。例如, href="abc/a% bc.txt target="_blank" 这在 Chrome 中有效,但在 IE 中无效。谁能帮我解决这个 IE 问题?任何帮助将不胜感激。
%
href="abc/a% bc.txt
target="_blank"
干杯,萨杰什·南比亚尔
使用转义d 版本的 " abc/a% bc.txt" 字符串:
abc/a% bc.txt
href="abc/a%25%20bc.txt"