php+ajax级联菜单[无刷新级联菜单]_PHP教程

WBOY
풀어 주다: 2016-07-13 17:07:00
원래의
758명이 탐색했습니다.

这一个网友发布的php+ajax级联菜单,我们常说的就是无刷新了。

这一个网友发布的php+ajax级联菜单,我们常说的就是无刷新了。

header("Content-type: text/html;charset=GBK");//输出编码,避免中文乱码
require_once(dirname(__FILE__)."/include/config_base.php");
require_once(dirname(__FILE__)."/include/inc_type.php");
require_once(dirname(__FILE__)."/include/inc_cache.php");

$fatherid="";
$fatherid=$_GET['fatherid'];

if(!empty($fatherid)){

if(!file_exists('/cache/sun_'.$fatherid.'_cache.txt')){

$ty = new Type(0);

$typeOptions = $ty->GetSmallOption($fatherid);

if(!empty($typeOptions)){

cache_write('/cache/sun_'.$fatherid.'_cache.txt', $typeOptions);

echo "

echo $typeOptions;

echo "";

$tl->Close();

}

}else{

$typeOptions=cache_get('/cache/sun_'.$fatherid.'_cache.txt');

echo "

echo $typeOptions;

echo "";

}
}
?>






<script><br /> function GetBigType (){<br /> var url='GetBigType.php';<br /> var pars='pid=1';<br /> var myAjax=new Ajax.Updater('BigType', url, {method:'get', parameters:pars});<br /> }<br /> GetBigType ();<br /> function GetSmallType(){<br /> var fatherid=$F('fatherid');<br /> var url=' GetSmallType.php';<br /> var pars='fatherid='+fatherid;<br /> var myAjax =new Ajax.Updater('SmallType', url, {method:'get', parameters:pars});<br /> }<br /> </script>

header("Content-type: text/html;charset=GBK");//输出编码,避免中文乱码
require_once(dirname(__FILE__)."/include/config_base.php");
require_once(dirname(__FILE__)."/include/inc_type.php");
require_once(dirname(__FILE__)."/include/inc_cache.php");
$pid="";
$pid=$_GET['pid'];
if($pid==1){

if(!file_exists('../cache/bigtype.cache.txt')){


$ty = new Type(0);


$typeOptions = $ty->GetBigOption();


cache_write('/cache/bigtype.cache.txt', $typeOptions);


echo "


echo "rn";


echo $typeOptions;


echo "";


$ty->Close();

}else{


$typeOptions=cache_get('/cache/bigtype.cache.txt');


echo "


echo "rn";


echo $typeOptions;


echo "";

}
}

?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/630480.htmlTechArticle这一个网友发布的php+ajax级联菜单,我们常说的就是无刷新了。 这一个网友发布的php+ajax级联菜单,我们常说的就是无刷新了。 ?php header(C...
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!