我正在尝试将值从多选列表框中通过Ajax传递给PHP。我在Jquery和JSON中看到了一些例子,但是我试图用普通的旧javascript(Ajax)来完成这个。这是我到目前为止(简化):
的Ajax:
function chooseMultiEmps(str)
{
var mEmpList2 = document.getElementById('mEmpList'); //values from the multi listbox
for (var i = 0; i < mEmpList2.options.length; i++) //loop through the values
var mEmpList = mEmpList2.options[i].value; //create a variable to pass in string
if (window.XMLHttpRequest)
{
xmlhttp = new XMLHttpRequest();
}
else
{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function()
{
if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
{
//specific selection text
document.getElementById('info').innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("POST", "myPage.php", true);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
var queryString = "&mEmpList=" + mEmpList; //query string should have multiple values
xmlhttp.send(queryString);
}
我可以运行alert(mEmpList)
并在各个消息框中获取每个值,但是当我检索并回显$_POST['mEmpList']
时,我只得到第一个值。此外,当我alert(queryString)
时,我只获得一个值。
我想我需要创建一个逗号分隔的数组,然后通过查询字符串传递它。从那里,我可以使用PHP implode / explode功能来分隔值。非常感谢任何帮助。
答案 0 :(得分:2)
这里:
for (var i = 0; i < mEmpList2.options.length; i++) //loop through the values
var mEmpList = mEmpList2.options[i].value; //create a variable to pass in string
你是一遍又一遍地重新定义你的mEmpList,这意味着只发送最后一个值
你可以这样做:
var mEmpList = '';
for (var i = 0; i < mEmpList2.options.length; i++) { //loop through the values
mEmpList = mEmpList +','+ mEmpList2.options[i].value; //create a variable to pass in string
}
此外,queryString
还不行,不需要&
var queryString = "mEmpList=" + mEmpList;
最后,您将使用逗号,
在PHP
中,您可以使用explode循环每个值:
<?php
$string = explode(',' $_GET['mEmpList']);
for($i=1; $i<count($string); $i++){
echo $string[$i]."<br />";
}
?>