帝国cms ajax获取当前栏目最新页面

时间:2024年03月01日

/

来源:网络

/

编辑:佚名

帝国cms模板中ajax获取当前栏目最新页面方法
模板页面
<script type="text/javascript" src="http://img.lanrentuku.com/img/js/jquery.js"></script>
<script src="[!--news.url--]e/extend/ajaxnews.php?classid=[!--classid--]" type="text/javascript"></script>
频道页面使用[!--self.classid--]
</head> 
<body>
<div>
<ul id="ajaxnews">
</ul> 
e/extend/ajaxnews.php
<?
require("../class/connect.php");
require("../class/db_sql.php");
$link=db_connect();
$empire=new mysqlquery();
$html="";
$classid = intval($_GET['classid']);
if($classid){
    $classpath = $empire->fetch1("select classpath from {$dbtbpre}enewsclass where classid=".$classid);
    $classpath = $classpath['classpath'];
    $db_sql = "select * from {$dbtbpre}ecms_news where classid = $classid order by newstime desc limit 10";
    $sql=$empire->query($db_sql);
    while($r=$empire->fetch($sql))
    {
        $html.="<li><a href=".$public_r['newsurl'].$classpath."/".$r['newspath']."/".$r['filename'].".html>".$r['title']."</a></li>";
    }
}
?>
$(function(){
    $("#ajaxnews").html("<?=$html?>");
});
<?
db_close();
$empire=null;
?>
猜你需要

豫ICP备2021026617号-1  豫公网安备:41172602000185   Copyright © 2021-2028 www.78moban.com/ All Rights Reserved

本站作品均来自互联网,转载目的在于传递更多信息,并不代表本站赞同其观点和对其真实性负责。如有侵犯您的版权,请联系 1565229909#qq.com(把#改成@),我们将立即处理。