AJAXとPHPを使用してボタンが押されたかどうかを検出しようとしています(もちろん、これはテストの一部であり、実際の目的ではありません)。テキストボックスに何かを入力するたびに検出できますが、ボタンが押されているかどうかを検出できません。
<html>
<head>
<script type="text/javascript">
function insert(){
if (window.XMLHttpRequest)
xmlhttp=new XMLHttpRequest();
else
xmlhttp=new ActiveXObject('Microsoft.XMLHTTP');
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
document.getElementById('adiv').innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open('GET','AJAX.inc.php?search='+document.getElementById('search_text').value+'search_button=Search!', true);
xmlhttp.send();
}
</script>
</head>
<body>
<input type="text" id="search_text" name="search" onkeyup="load();">
<input type="submit" name="search_button" value="Search!">
<div id="adiv"></div>
</body>
</html>
And here's my AJAX file:
<?php
if(isset($_GET['search_button'])){
echo 'You pressed a button!';
}
?>