duanhuilao0787 2014-12-12 18:48 采纳率: 100%
浏览 295
已采纳

没有得到ajax-xmlhttp.open中的字符串值(“GET”,“xxx.php?q =”+ str,true);

From the below example,if value is in numbers its working correctly.But if its in string the value displays as 0 W3 Schools Example

HTML:

<select name="users" onchange="showUser(this.value)">
  <option value="">Select a person:</option>
  <option value="abc-01">Peter Griffin</option>
  <option value="aaac-02">Lois Griffin</option>
  </select>

SCRIPT:

function showUser(str) {
    if (str == "") {
        document.getElementById("txtHint").innerHTML = "";
        return;
    } else { 
        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("txtHint").innerHTML = xmlhttp.responseText;
            }
        }
        xmlhttp.open("GET","ajax2.php?q="+str,true);
        xmlhttp.send();
    }
}

PHP:

$q = intval($_GET['q']);        
echo    $q ;

I get 0 as value.Need help

  • 写回答

3条回答 默认 最新

  • douqie1884 2014-12-12 18:54
    关注

    You are trying to convert String to int in php as there are String values in your htm code and you are trying to convert these values in int in you php code so correct your code accordingly.

    if html is

    <select name="users" onchange="showUser(this.value)">
      <option value="">Select a person:</option>
      <option value="abc-01">Peter Griffin</option>
      <option value="aaac-02">Lois Griffin</option>
      </select>
    

    then php code would be.

    $q = $_GET['q'];       
    echo    $q ;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?