ajax无法显示哈希符号

时间:2015-10-31 13:54:26

标签: javascript php ajax

我有这段HT​​ML代码

<textarea cols="120" rows="4" name="editor" id="editor" onkeyup="sendData()"></textarea>
<span id="container" name="container"></span>

和JS中的这个

function sendData(){
var hc = document.getElementById('editor').value;
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
    if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
        document.getElementById("container").innerHTML = xmlhttp.responseText;
    }
}
xmlhttp.open("GET", "w.php?h=" + hc, true);
xmlhttp.send();
}

也是w.php中的这个

<?php
$h = $_REQUEST['h'];
echo $h;
?>

当我使用这个代码时,它的工作非常好,但是首字母“#”和第二个“&amp;”存在问题。那怎么能解决这个问题:) 谢谢

1 个答案:

答案 0 :(得分:4)

您必须为URI编码数据。只需使用

encodeURIComponent(/* The data to encode here. */)

在创建请求网址之前。