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.
我已经尝试加载并且希伯来语对我不起作用,所以我将代码更改为
$.ajax({ type: "post", url: "process-tb.asp", data: data, success: function(msg)
(部分代码)
不知道那个帖子和获取是我的希伯来语查询字符串的问题。所以知道我可以让我的页面获取希伯来语和英语,但文本中没有添加空格。
所有页面都编码为 utf-8。
它有什么问题?
我已经通过替换空格解决了这个问题 - 所以希伯来语与帖子一起使用并且空格被替换
data = data.replace(/\s/g, "%20");