php专区

 首页 > php专区 > PHP高级 > 缓存异常处理 > 关于变量与循环语句的有关问题

关于变量与循环语句的有关问题

分享到:
【字体:
导读:
         摘要:关于变量与循环语句的问题各位大牛,消息想问个关于AJAX与PHP的问题,现在碰到这样的一个情况 我希望前端页面在点击某标签的时候,在下方可以显示我关于上方点击的标签进行关联的资料,代码如下 index.php <html> <head> <script...

关于变量与循环语句的有关问题
关于变量与循环语句的问题
各位大牛,消息想问个关于AJAX与PHP的问题,现在碰到这样的一个情况
我希望前端页面在点击某标签的时候,在下方可以显示我关于上方点击的标签进行关联的资料,代码如下
index.php


 




 
First Name:



             echo "";
                 echo "";
                    echo "test";
                    echo "";
               echo " 
";
             echo "";
                 echo "";
                    echo "test";
                    echo "";
               echo " 
";
?>


Suggestions: 





js clienthint代码
var xmlHttp

function showHint(str)
{
if (str.length==0)
  { 
  document.getElementById("txtHint").innerHTML=""
  return
  }
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
  {
  alert ("Browser does not support HTTP Request")
  return
  } 
var url="gethint.php"
url=url+"?q="+str
url=url+"&sid="+Math.random()
xmlHttp.onreadystatechange=stateChanged 
xmlHttp.open("GET",url,true)
xmlHttp.send(null)


function stateChanged() 

if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 { 
 document.getElementById("txtHint").innerHTML=xmlHttp.responseText 

 } 
}

function GetXmlHttpObject()
{
var xmlHttp=null;
try
 {
 // Firefox, Opera 8.0+, Safari
 xmlHttp=new XMLHttpRequest();
 }
catch (e)
 {
 // Internet Explorer
 try
  {
  xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
  }
 catch (e)
  {
  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
 }
return xmlHttp;
}

处理页面代码gethint.php

 $q=$_GET["q"];

//$select ="select * from test where cid='$q'";

$hint="for($i=0;$i<2;$i++){......}";

//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;
?>

因为在处理页面$hint 是需要传到前端页面的,所以我希望在处理页面将循环内容都做好之后传递,但是我这样写:$hint="for($i=0;$i<2;$i++){......}"; 他却只会档字符串传递。
所以拜托大家有没有什么好的办法解决一下
  在线等,谢谢各位了!

------解决方案--------------------
可能是:
标记不配套
id 重名
预先绑定的事件无效

关于变量与循环语句的有关问题
分享到:
两组容易的PHP解密解密代码
两组容易的PHP解密解密代码 两组简单的PHP解密解密代码 http://www.phper.org.cn/?post=133加密算法如下:function encrypt($data, $key) { $key = md5($key); $x = 0; $len = strlen($data); $l = strlen($key); for ($i = 0; $i < $len; $i++) { if ($x == $l) { ...
PHP有没有is_type()函数?该如何解决
PHP有没有is_type()函数?该如何解决 PHP有没有is_type()函数?http://docs.php.net/manual/zh/language.types.intro.php 如果只是想得到一个易读懂的类型的表达方式用于调试,用 gettype() 函数。要查看某个类型,不要用 gettype(),而用 is_type 函数。 问题: 1.PHP手册,有is_type( )函数么? ...
  •         php迷,一个php技术的分享社区,专属您自己的技术摘抄本、收藏夹。
  • 在这里……