jquery post 使用希伯来语(unicode)但不使用空格,不使用希伯来语但使用空格

发布于 2024-08-24 19:31:15 字数 308 浏览 12 评论 0原文

我尝试过加载,但希伯来语对我不起作用,所以我将代码更改为

    $.ajax({
        type: "post",
        url: "process-tb.asp",
        data: data,
        success: function(msg)

(部分代码),

不知道 post 和 get 是我的希伯来语查询字符串的问题。 所以知道我可以让我的页面获得希伯来语和英语,但文本中不会添加空格。

所有页面均编码为 utf-8。

有什么问题吗?

i have tried load and hebrew didn't work for me so i changed my code to

    $.ajax({
        type: "post",
        url: "process-tb.asp",
        data: data,
        success: function(msg)

(partial code)

not knowing that post and get is the problem for my hebrew querystring.
so know i can get my page to get the hebrew and english but no spaces are add to the text.

all pages are encoded to utf-8.

what is wrong with it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

零度℉ 2024-08-31 19:31:15

我已经通过替换空格修复了这个问题 - 所以希伯来语可以与帖子一起使用并且空格被替换

data = data.replace(/\s/g, "%20");

i have fixed that with replacing spaces - so hebrew works with post and spaces are replaced

data = data.replace(/\s/g, "%20");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文