5

我想在不提交表单的情况下使用用户选择的选项值。这是我的 HTML 代码

Combo Box<br>
<select name="select1">
<option value="IVP" selected>IVP</option>
<option value="SURTEK">SURTEK</option>
<option value="GUITARTUNER">GUITARTUNER</option>
<option value="OTHER">OTHER</option>
</select>

我想将选定的选项值带到一个 php 变量中,以便根据选项值显示一组新的数据。谢谢

4

4 回答 4

10

正如其他人建议的那样,您应该使用 AJAX。我建议查看 AJAX 调用的 javascript/Jquery 示例。

我猜您想根据用户选择的选项修改 Web 的一部分,最好的方法是使用单独的 PHP 脚本来接收所选选项(在 javascript/JQuery 中捕获)并返回您想要的新 HTML显示。

例如在 Jquery 中获取选定的选项:

var selected_option_value=$("#select1 option:selected").val();

同样在 Jquery 中进行 AJAX 调用,使用 POST 传递值:

  $.post("script_that_receives_value.php", {option_value: selected_option_value},
      function(data){ //this will be executed once the `script_that_receives_value.php` ends its execution, `data` contains everything said script echoed.
          $("#place_where_you_want_the_new_html").html(data);
      }
  );

希望这可以帮助!

编辑:让我们为上面的示例提供更多细节:

假设您有一个 index.html 页面,您<select name="select1">的问题中给出了该页面:

第一步是当有人选择一个选项时链接一个事件,如何做到这一点:

1-第一种方法:

<select name='select1' id='select1' onchange='load_new_content()'>

这样,当有人更改列表的选定值时,将执行<select>javascript 函数。load_new_content()请注意,我已添加id='select1'到标签中,这用于在 javascript/JQuery 中搜索此元素,如果您需要在 javascript/JQuery 中使用该标签,则应始终使用 id 属性。

2- 第二种方式,使用 JQuery 链接事件:

为此,您应该在index.html 中有一个<script>标签。<head>在这个<script>标签内你应该有:

$(document).ready(function(){
      // everything here will be executed once index.html has finished loading, so at the start when the user is yet to do anything.
      $("#select1").change(load_new_content()); //this translates to: "when the element with id='select1' changes its value execute load_new_content() function"
});

无论您要使用哪个选项,您现在都需要此load_new_content()功能。它也应该在<script>标签的<head>标签内声明,就像 $(document).ready 函数一样。

function load_new_content(){
     var selected_option_value=$("#select1 option:selected").val(); //get the value of the current selected option.

     $.post("script_that_receives_value.php", {option_value: selected_option_value},
         function(data){ //this will be executed once the `script_that_receives_value.php` ends its execution, `data` contains everything said script echoed.
              $("#place_where_you_want_the_new_html").html(data);
              alert(data); //just to see what it returns
         }
     );
} 

现在唯一剩下的是script_that_receives_value.php

<?php
     $selected_option=$_POST['option_value'];

     //Do what you need with this value, then echo what you want to be returned.

     echo "you have selected the option with value=$selected_option";
?>
于 2013-03-01T08:48:45.043 回答
2

使用 AJAX,同时在下拉列表中选择一个选项触发 jQuery 函数并通过 AJAX 将值发送到服务器页面

HTML页面:

<html>
<head>
<script>
function showUser(str)
{
if (str=="")
  {
  document.getElementById("txtHint").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("txtHint").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","getuser.php?q="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>

<form>
<select name="users" onchange="showUser(this.value)">
<option value="">Select a person:</option>
<option value="1">Peter Griffin</option>
<option value="2">Lois Griffin</option>
<option value="3">Glenn Quagmire</option>
<option value="4">Joseph Swanson</option>
</select>
</form>
<br>
<div id="txtHint"><b>Person info will be listed here.</b></div>

</body>
</html> 

PHP页面(getuser.php):

<?php
$q=$_GET["q"];

$con = mysql_connect('localhost', 'peter', 'abc123');
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("ajax_demo", $con);

$sql="SELECT * FROM user WHERE id = '".$q."'";

$result = mysql_query($sql);

echo "<table border='1'>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
<th>Hometown</th>
<th>Job</th>
</tr>";

while($row = mysql_fetch_array($result))
  {
  echo "<tr>";
  echo "<td>" . $row['FirstName'] . "</td>";
  echo "<td>" . $row['LastName'] . "</td>";
  echo "<td>" . $row['Age'] . "</td>";
  echo "<td>" . $row['Hometown'] . "</td>";
  echo "<td>" . $row['Job'] . "</td>";
  echo "</tr>";
  }
echo "</table>";

mysql_close($con);
?> 

参考:http ://www.w3schools.com/php/php_ajax_database.asp

于 2013-03-01T08:39:31.113 回答
1

如果不发出 http 请求,则无法在 php 变量中获取选项值,因为所选值位于客户端,而 php - 在服务器中。

您可以使用 ajax,但它仍在提交表单。如果您不想对服务器执行查询,您必须在客户端加载所有数据并使用 JavaScript 来管理它

于 2013-03-01T08:38:15.737 回答
0

如果您正在寻找动态网页内容,Ajax 是最佳选择

于 2013-03-01T09:14:12.963 回答