首页 > CMS > 织梦DEDE > 正文

DEDECMS如何在首页用JS调用留言本内容

2024-07-12 09:08:45
字体:
来源:转载
供稿:网友
最近一们做站的朋友问我如何在织梦dedeCMS的首页用JS的方式调用留言本的内容呢?

经过一番研究,发现可以这样改:
在plus/guestbook目录新建文件
js.php

<?phprequire_once(dirname(__FILE__)."/config.php");require_once(dirname(__FILE__)."/../../include/pub_datalist_dm.php"); setcookie("GUEST_BOOK_MOVE",GetCurUrl(),time()+3600,"/");if($gotopagerank=="admin"){  $userrank = $cuserLogin->getUserRank();}else{ $userrank = -1; }function GetIsCheck($ischeck,$id){  if($ischeck==0) return "<br><a href='edit.php?job=check&ID=$id' style='color:red'>[审核]</a>";  else return "";}if($userrank>0) $sql = "select * from dede_guestbook order by ID desc";else $sql = "select * from dede_guestbook where ischeck=1 order by ID desc";$dlist = new DataList();$dlist->Init();$dlist->pageSize =7;$dlist->SetParameter("gotopagerank",$gotopagerank);$dlist->SetSource($sql);$mylist = $dlist->GetDataList();while($row = $mylist->GetArray('dm')){  $xingming=$row['uname'];  $neirong=strip_tags($row['msg']);  $neirong=str_replace(" ","",$neirong);  $neirong=cn_substr($neirong,45);  $neirong=str_replace("","",$neirong);  $neirong=rawurldecode($neirong);  $link=$row['ID'];  echo "document.write(/"·<a href='./plus/guestbook/index.php#$link' target='_blank'> <font color=red>$xingming - </font> $neirong</A><br>/");";} $dlist->Close();?>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表