0

这里可能是一个简单的解决方案,我很困惑。我有一个<select>通过来自 MySQL 用户数据库的数组填充的。那里没问题。I've also got a script that when a certain user is selected, I can via AJAX the user's user_id. 我的问题是将该用户 ID 放入变量 $assigned_to 中,以包含在 URL 中。
对不起,编码太具体了。如果需要,我可以将其分解为更简化的版本。这是我到目前为止所得到的:

<script type="text/javascript">
function showData(str)
{
if (str=="")
  {
  document.getElementById("showData").innerHTML="";
  return;
  }
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("showData").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","getdata.php?assign_to="+str,true);
xmlhttp.send();
}
</script>

//
//This gets the user_id value from the `<select>` when a user selects it.
//

<?php

//
//Here is the function that displays my users:
//

function userlist()
{               
echo "<select name=\"assigned_to\" onChange=\"showData(this.value)\">";
echo "<option default value=\"\">Assignee</option>";

$mysqli = new mysqli("xxx", "xxx", "xxx", "xxx");
$userlist = "SELECT * FROM users where user_level = 2";
$result = $mysqli->query($userlist);

while( $row = $result->fetch_assoc() ) {
echo "<option value=\"".$row['user_id']."\">".$row['first_name']." ".$row['last_name']."</option>";
}
echo "</select>&nbsp;";
}
echo "<p>";
echo userlist();

echo "<a id=\"show\" href=\"index.php?page=overview&location=advance&assignee=\"".$assign_to."\">Assign</a></p>";
?>
<!-- The line below **will** display the correct user_id value when selected -->
<div id="showData">User Id Shows Here</div>

最后一个 URL 变量 $assign_to 是我希望 $row['user_id'] 选择返回时的值。

我了解解决所有这些问题的理想方法是将表单发布到 php 页面并使用 _POST 来检索所有这些变量。不幸的是,在这种情况下,我需要 URL 中的变量。

一如既往地感谢。

4

1 回答 1

0

你在这里所做的应该已经做了你想做的事情。更改Select-box时,您的showdata功能将带有Select-box的当前选择值:

<select name=\"assigned_to\" onChange=\"showData(this.value)\">

在 showData 函数中,检索到的参数“str”包含此值,并将其附加到 url:

xmlhttp.open("GET","getdata.php?assign_to="+str,true);

您应该在首选调试工具(firebug、chrome 开发人员工具)的网络选项卡中看到它,或者您可以将其记录到控制台/警告它

alert("getdata.php?assign_to="+str);
console.log("getdata.php?assign_to="+str);

你会看到它有效

编辑:

可以像这样使用参数重定向到当前页面(即使我不明白您为什么要这样做......):

var current_url = document.location.href;
var separator = current_url.indexOf('?') === -1 ? '?' : '&'; 
document.location.href = current_url + separator + 'assign_to=' + str;

编辑2:

将此功能添加到您的脚本中:

function setLinkAssignee(assignee) {
  var i, newParams = [], link = document.getElementById('show'),
      href = link.getAttribute('href')
      linkArr = href.split('?')
      params = (linkArr[1] || '').split('&');

  for(i=0; i < params.length; i++) {
    if(params[i].indexOf('assignee=') === -1) {
      newParams.push(params[i]);
    }
  }
  link.setAttribute('href', linkArr[0] + '?' + newParams.join('&') + '&assignee='+assignee);
}

如果您不希望完成 ajax 请求,请像这样调用它:

<select name=\"assigned_to\" onChange=\"setLinkAssignee(this.value)\">

或者在你的 showData 中像这样:

function showData(str) {
  // your stuff here
  setLinkAssignee(str);
于 2013-02-20T20:49:12.263 回答