Javascript - 如何对文本文件中的特殊字符进行编码以自动填充文本字段
我有一个用于自动填充文本字段功能的文本文件。问题是,如何对文本文件的内容进行编码,以便不再有特殊字符?请帮忙...
I have a text file that I get for my auto-populate textfield function. The problem is, how do I encode the contents of the text file so there will be no more special characters? please help...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
encodeURIComponent
和decodeURIComponent
函数用于此。You can use
encodeURIComponent
anddecodeURIComponent
functions for this.