0

PHP と XML を使用する Web ページの作成に関しては比較的新しいのですが、W3S Schools で見た somthine に興味があります。サンプルページに表示されているAJAXライブ検索を作成したいのですが、最初にそれを実行する方法を学ぶのに助けが必要です.( http://www.w3schools.com/php/php_ajax_livesearch.asp )コピーして貼り付けましたWeb サイトにある 3 つのコード ファイルと、html ファイルをクリックすると空のフォーム ボックスだけが表示されます。これを何らかの形でMySqlとリンクする必要がありますか? もしそうなら、どうすればこれを行うことができますか?

index.html:

<html>
<head>
<script>
function showResult(str)
{
if (str.length==0)
  {
  document.getElementById("livesearch").innerHTML="";
  document.getElementById("livesearch").style.border="0px";
  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("livesearch").innerHTML=xmlhttp.responseText;
    document.getElementById("livesearch").style.border="1px solid #A5ACB2";
    }
  }
xmlhttp.open("GET","livesearch.php?q="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>

<form>
<input type="text" size="30" onkeyup="showResult(this.value)">
<div id="livesearch"></div>
</form>

</body>
</html> 

livesearch.php :

<?php
$xmlDoc=new DOMDocument();
$xmlDoc->load("links.xml");

$x=$xmlDoc->getElementsByTagName('link');

//get the q parameter from URL
$q=$_GET["q"];

//lookup all links from the xml file if length of q>0
if (strlen($q)>0)
{
$hint="";
for($i=0; $i<($x->length); $i++)
  {
  $y=$x->item($i)->getElementsByTagName('title');
  $z=$x->item($i)->getElementsByTagName('url');
  if ($y->item(0)->nodeType==1)
    {
    //find a link matching the search text
    if (stristr($y->item(0)->childNodes->item(0)->nodeValue,$q))
      {
      if ($hint=="")
        {
        $hint="<a href='" .
        $z->item(0)->childNodes->item(0)->nodeValue .
        "' target='_blank'>" .
        $y->item(0)->childNodes->item(0)->nodeValue . "</a>";
        }
      else
        {
        $hint=$hint . "<br /><a href='" .
        $z->item(0)->childNodes->item(0)->nodeValue .
        "' target='_blank'>" .
        $y->item(0)->childNodes->item(0)->nodeValue . "</a>";
        }
      }
    }
  }
}

// Set output to "no suggestion" if no hint were found
// or to the correct values
if ($hint=="")
  {
  $response="no suggestion";
  }
else
  {
  $response=$hint;
  }

//output the response
echo $response;
?> 

links.xml :

<!-- Edited by XMLSpy® --><pages><link><title>HTML a tag</title><url>http://www.w3schools.com/tags/tag_a.asp</url></link><link><title>HTML br tag</title><url>http://www.w3schools.com/tags/tag_br.asp</url></link><link><title>CSS background Property</title><url>http://www.w3schools.com/cssref/css3_pr_background.asp</url></link><link><title>CSS border Property</title><url>http://www.w3schools.com/cssref/pr_border.asp</url></link><link><title>JavaScript Date Object</title><url>http://www.w3schools.com/jsref/jsref_obj_date.asp</url></link><link><title>JavaScript Array Object</title><url>http://www.w3schools.com/jsref/jsref_obj_array.asp</url></link></pages>

助けてくれてありがとう

4

2 に答える 2

0

シンプルな JavaScript を使用して ajax リクエストを送信しているようですjQuery。ブラウザをチェックする必要はなく、他の多くのことは jQuery で簡素化されています。さて、流れの部分です。

1. ajax リクエストをトリガーするイベントが発生する必要があります。ぼかし、フォーカス、クリック、ロード、マウスアウト、マウスインなど、何でもかまいません。コードは次のようになります。

$($btn).click(function(){

insert your ajax request here

})

これは、ボタンがクリックされたことを示します

2. ajax を呼び出します。

   $.ajax({

    url : "phpFile.php",

    data : dataYouwantToSend,

    success: function() {

    code to do if the call is successful
    }

    })

3.phpファイルのデータを処理する

phpFile.php

PHPファイルでエコーまたは印刷するものはすべて、ファイルからの応答として表示されます。

たとえば、phpファイルにのみ含まれている場合

echo "hello world";

あなたのajaxリクエストへの応答はちょうどhello world.

4.応答を処理するajax success function

success : function (response){ //the variable in the function can be anything
alert(response);
}

上記の例はalert hello world

コード全体は次のようになります。これがhtmlファイルです。

<input type="text" id="clickMe" />
<script src="ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
$(function(){
$("#clickMe").click(function(){
$.ajax({
url : "phpFile.php",
success : function(res) {
alert(res);
}
})
})
})
</script>

これはphpファイルphpFile.phpです

echo "Hello world";
于 2013-06-19T14:27:26.193 に答える