我想用 JavaScript 的 POST 方法发送一些变量和一个字符串.
I want to send a few variables and a string with the POST method from JavaScript.
我从数据库中获取字符串,然后将其发送到 PHP 页面.我正在使用 XMLHttpRequest 对象.
I get the string from the database, and then send it to a PHP page. I am using an XMLHttpRequest object.
问题是字符串多次包含字符&,而PHP中的$_POST数组把它看成是多个键.
The problem is that the string contains the character & a few times, and the $_POST array in PHP sees it like multiple keys.
我尝试将 & 替换为 & 与 replace() 函数,但它似乎没有做任何事情.
I tried replacing the & with & with the replace() function, but it doesn't seem to do anything.
谁能帮忙?
javascript 代码和字符串如下所示:
var wysiwyg = dijit.byId("wysiwyg").get("value");
var wysiwyg_clean = wysiwyg.replace('&','&');
var poststr = "act=save";
poststr+="&titlu="+frm.value.titlu;
poststr+="§iune="+frm.value.sectiune;
poststr+="&wysiwyg="+wysiwyg_clean;
poststr+="&id_text="+frm.value.id_text;
xmlhttp.open("POST","lista_ajax.php",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send(poststr);
字符串是:
<span class="style2">"Busola"</span>
你可以使用 encodeURIComponent().
它将转义所有不能在 URL 中逐字出现的字符:
It will escape all the characters that cannot occur verbatim in URLs:
var wysiwyg_clean = encodeURIComponent(wysiwyg);
在此示例中,与字符 & 将被替换为转义序列 %26,这在 URL 中有效.
In this example, the ampersand character & will be replaced by the escape sequence %26, which is valid in URLs.
这篇关于如何发送“&"?通过 AJAX 的(和号)字符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
即使在调用 abort (jQuery) 之后,浏览器也会等待Browser waits for ajax call to complete even after abort has been called (jQuery)(即使在调用 abort (jQuery) 之后,浏览器也会等待 ajax 调用
JavaScript innerHTML 不适用于 IE?JavaScript innerHTML is not working for IE?(JavaScript innerHTML 不适用于 IE?)
XMLHttpRequest 无法加载,请求的资源上不存在“AXMLHttpRequest cannot load, No #39;Access-Control-Allow-Origin#39; header is present on the requested resource(XMLHttpRequest 无法加载,请求的资
XHR HEAD 请求是否有可能不遵循重定向 (301 302)Is it possible for XHR HEAD requests to not follow redirects (301 302)(XHR HEAD 请求是否有可能不遵循重定向 (301 302))
NETWORK_ERROR:XMLHttpRequest 异常 101NETWORK_ERROR: XMLHttpRequest Exception 101(NETWORK_ERROR:XMLHttpRequest 异常 101)
XMLHttpRequest 206 部分内容XMLHttpRequest 206 Partial Content(XMLHttpRequest 206 部分内容)