gpt4 book ai didi

php - 如何使用 jQuery 转义表单输入中的 "&"符号字符

转载 作者:IT王子 更新时间:2023-10-29 00:01:05 25 4
gpt4 key购买 nike

我的 jQuery 脚本通过 POST 方法发送数据时出现问题。问题是每当它通过 Ajax 发送数据时在句子中有一个“&”符号,它会在找到“&”时截断句子。

请查看下面的图片了解更多信息。

The text that pass to ajax POST Output after ajax POST on firebug Data that has been save in the database The jQuery ajax POST

最佳答案

htmlentites

This function is identical to htmlspecialchars() in all ways, except with htmlentites(), all characters which have HTML character entity equivalents are translated into these entities.

If you're wanting to decode instead (the reverse) you can use html_entity_decode().

例子:

echo htmlentities("&"); // &

如果您直接在浏览器中执行此操作,您应该能够使用:

encodeURIComponent(string input);

例子:

encodeURIComponent($.trim($("input[name=t-tim_rendered-"+id+"]").val().toString()));

关于php - 如何使用 jQuery 转义表单输入中的 "&"符号字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5020345/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com