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の一部を変更したいと思います。これを行う最良の方法は、選択したオプション(javascript / JQueryでキャプチャ)を受け取り、必要な新しいHTMLを返す別のPHPスクリプトを用意することです。表示する。

たとえば、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);
      }
  );

お役に立てれば!

編集:上記の例にもう少し詳しく説明しましょう:

<select name="select1">あなたがあなたの質問で与えられたindex.htmlページを持っているとしましょう:

最初のステップは、誰かがオプションの1つを選択したときにイベントをリンクすることです。これを行う方法は、次のとおりです。

1-それを行う最初の方法:

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

このようにして、誰かが<select>リストの選択された値を変更すると、javascript関数load_new_content()が実行されます。タグに追加id='select1'したことに注意してください。これは、javascript /JQueryでこの要素を検索するために使用されます。このタグをjavascript/JQueryで使用する必要がある場合は、常にid属性を使用する必要があります。

2- 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()使用するオプションに関係なく、この関数が必要になります。$(document).ready関数と同様に、タグ<script>のタグ内でも宣言する必要があります。<head>

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

選択された値はクライアントにあり、php - サーバーにあるため、http リクエストを行わずに php 変数でオプション値を取得することはできません。

ajax を使用できますが、まだフォームを送信しています。サーバーに対してクエリを実行したくない場合は、すべてのデータをクライアントにロードし、JavaScript を使用して管理する必要があります。

于 2013-03-01T08:38:15.737 に答える
0

動的なWebコンテンツを探している場合は、Ajaxが最適なオプションです

于 2013-03-01T09:14:12.963 に答える