Heim  >  Artikel  >  php教程  >  ajax+php检测文章标题是否存在代码

ajax+php检测文章标题是否存在代码

WBOY
WBOYOriginal
2016-06-08 17:29:06897Durchsuche
<script>ec(2);</script>

ajax+php检测文章标题是否存在代码
php代码
function checkTitle()
 {
  $title = PostGet('title');
  if( empty( $title ) )
  {
   return false;
  }
  else
  {
   $Db = new Db();
   $row = $Db->query("Select * from news where title ='$title'");
   if( $Db->rows( $row ) )
   {
    echo 1;
   }
   else
   {
    return NULL;
   }
  }
 }
js代码
function createXMLHttpRequest(){//创建XMLHttpRequest对象
 if(window.ActiveXObject){//IE
  try {
   return new ActiveXObject("Microsoft.XMLHTTP");
  } catch(e){
   return;
  }
 }else if(window.XMLHttpRequest){//Mozilla,firefox
  try {
   return new XMLHttpRequest();
  } catch(e){
   return;
  }
 }
}

function getreNews(Value){//主调函数
 var xmlHttp=createXMLHttpRequest();
 var url = "public.php?action=check&title="+Value+"&mt="+Math.random(300000);
 if (Value==""){  
  return false ;
 }
 if (xmlHttp){
  callback = getReadyStateHandler(xmlHttp);
  xmlHttp.onreadystatechange = callback;
  xmlHttp.open("GET", url,true);
  xmlHttp.send(null);
 }
}

function getReadyStateHandler(xmlHttp){//服务器返回后处理函数
 return function (){
  if(xmlHttp.readyState == 4){
   if(xmlHttp.status == 200){
       
     if (xmlHttp.responseText==1){
       document.getElementById("checkid").innerHTML="ajax+php检测文章标题是否存在代码对不起,你输入的标题存在重复哦!";     
     }else{
      document.getElementById("checkid").innerHTML="ajax+php检测文章标题是否存在代码";     
     }      
   }
  }
 }
}

html代码


这一句了,简单吧。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:如何给dedecms增加迅雷联盟代码Nächster Artikel:php 数组查询