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

没有得到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 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序