href javascript函数调用自动解码问题
<a href="javascript:myfunc('hi%3dhi')"> </a>
这会将文本 hi&hi 传递给 myfunc,而不是 hi%3dhi。有什么办法可以解决这个问题,而不需要从 onclick 调用 myfunc
<a href="javascript:myfunc('hi%3dhi')"> </a>
This passes text hi&hi to myfunc instead of hi%3dhi. Any way to solve this with out calling myfunc from onclick
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要正确转义字符串。
具体来说,您需要对其进行 HTML 编码,然后对其进行 URL 编码,然后对其进行 Javascript 编码。
%
字符应通过 URL 转义步骤转换为%25
。You need to properly escape your string.
Specifically, you need to HTML-encode it, then URL-encode it, then Javascript-encode it.
The
%
character should be converted by the URL-escaping step to%25
.是的,
只需 window.encodeURIComponent
'hi%3dhi'
。yes,
just window.encodeURIComponent
'hi%3dhi'
.