如何使用Javascript ajax发送网址?

时间:2013-01-07 21:31:01

标签: php javascript ajax

  

可能重复:
  How to encode a URL in JavaScript?

我正在尝试使用以下代码将网址发送到php代码,但因为网址包含& a = 12& b = 4 一旦我在我的PHP代码中获得“a”变量的值,就会删除地址的最后部分。

url = http://www.example.com/help.jpg?x=10&a=12&b=4 但是我在我的php文件中获取的网址是http://www.example.com/help.jpg?x=10(& a = 12& b = 4被删除了,我知道原因是javascript,ajax与url地址混在一起但不知道它只是一个值,但不知道如何解决它)

         function upload(url){

            if (window.XMLHttpRequest)
            {// code for IE7+, Firefox, Chrome, Opera, Safari
                xmlhttp=new XMLHttpRequest();
            }
            else
            {// code for IE6, IE5
                xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
            }
            xmlhttp.onreadystatechange=function()
            {
                if (xmlhttp.readyState==4 && xmlhttp.status==200)
                {
                    document.getElementById("output").innerHTML= xmlhttp.responseText;
                }
            }
            xmlhttp.open("GET","Photos.php?a="+url,true);
            xmlhttp.send();
     }        


   if(isset($_GET["a"]))
   {
       $Address = $_GET["a"];
       echo $Address;

   }

输出是>>> “http://www.example.com/help.jpg?x=10”但应该是http://www.example.com/help.jpg?x=10&a=12&b=4

2 个答案:

答案 0 :(得分:5)

您需要对参数进行编码

xmlhttp.open("GET","Photos.php?a="+encodeURIComponent(url),true);

答案 1 :(得分:0)

您需要对网址进行编码。您可以使用encodeURIComponent(str)和encodeURI(str),如:

var eurl = encodeURIComponent("http://www.example.com/help.jpg?x=10&a=12&b=4");
xmlhttp.open("GET","Photos.php?a=" + eurl, true);