gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 03:56:44 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/47501013/

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