PHP、Javascript、MySQL でドロップダウン メニューを作成しています。Javascript/AJAX を介して別の PHP ファイルと通信することに成功しました。JavaScript では、PHP ファイルでキャッチした URL を含む ID を送信しています。PHP ファイルでは、ID の値を確認し、それを使用して実行するクエリを確認します。次に、ロールオーバーするたびにそれらの値を出力したいと思います。私はほぼそこにいると思いますが、今は打たれています。
Javascript:
function onRollOver(id)
{
if (window.XMLHttpRequest)
{
test=new XMLHttpRequest();
}
else
{
test=new ActiveXObject("Microsoft.XMLHTTP");
}
// document.getElementById('test').style.display="block";
if (id == 1)
{
console.log("This is one");
}
else if (id == 2)
{
console.log("this i stwo");
}
console.log("id = " + id);
test.open("GET","get_menu_id.php?id="+id,true);
test.send();
}
function onRollOut()
{
document.getElementById('test').style.display="none";
}
PHP と HTML:
while($names = $get_category_names->fetch_object())
{
$li_data = "<li data-dir=";
//echo $li_data . $names->id . ">" . $names->name . "</li>";
echo "<a onmouseover='onRollOver($names->id);' onmouseout='onRollOut($names->id);' >" . "$names->name" . "</a>";
}
外部 PHP ファイル:
<?php
require_once("../includes/constants.php");
require_once("../includes/connection.php");
require_once("functions.php");
$connect = connectDB();
//get the q parameter from URL
$id=$_GET["id"];
//lookup all hints from array if length of q>0
echo $id;
if ($id == 1)
{
$nintendo = $connect->query("SELECT DISTINCT (categorypath) FROM feeds WHERE category_id = 1");
while($names = $nintendo->fetch_object())
{
echo "<p>" . $names->categorypath . "</p>";
}
}
?>