从下面的示例中,如果值是数字,则其工作正常。但如果其在字符串中,则值显示为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 ;
我得到0作为值。需要帮助
答案 0 :(得分:2)
你试图在php中将String转换为int,因为你的htm代码中有String值,你试图在你的php代码中转换int中的这些值,所以相应地纠正你的代码。
如果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>
那么php代码就是。
$q = $_GET['q'];
echo $q ;
答案 1 :(得分:1)
您正在尝试在字符串“abc-01”
的php中返回一个intval