AJAX Simple Error. XMLHttpRequest cannot load http://localhost/mpl/getPage.php. Origin null is not allowed by Access-Control-Allow-Origin
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
XmlHttpRequest error: Origin null is not allowed by Access-Control-Allow-Origin
我是JavaScript Phonegap和AJAX的新手。 我试图写一个简单的Phonegap应用程序,它将从服务器请求消息,但应用程序没有响应。 当我在Chrome浏览器上运行我的脚本作为文件,因为我知道Phonegap是如何工作的,它显示了foll
我怎样才能解决这个问题? 我的代码在下面。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | <html> <head> <script type="text/javascript"> function getMessage() { 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("serverReply").innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","http://localhost/mpl/getPage.php",true); xmlhttp.send(); } </head> <body> Get message </body> </html> |
我的
1 2 3 4 5 | <?php echo 'cool'; ?> |
请帮助我。 谢谢。
使用下面的代码
1 | Get message |
插话的
1 | Get message |
或试试这个
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | <html> <head> <script type="text/javascript"> function getMessage() { 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) { alert(xmlhttp.responseText); document.getElementById("serverReply").innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","http://localhost/mpl/getPage.php",true); xmlhttp.send(); } </head> <body> Get message </body> </html> |