时间:2021-07-21人气:-
function cardInit() { var cardShow = function (obj) { if (BROWSER.ie && BROWSER.ie < 7 && obj.href.indexOf('username') != -1) { return; } pos = obj.getAttribute('c') == '1' ? '43' : obj.getAttribute('c'); USERCARDST = setTimeout(function () { ajaxmenu(obj, 500, 1, 2, pos, null, 'p_pop card'); }, 250); }; var cardids = {}; var a = document.body.getElementsByTagName('a'); for (var i = 0; i < a.length; i++) { if (a[i].getAttribute('c')) { var href = a[i].getAttribute('href', 1); if (typeof cardids[href] == 'undefined') { cardids[href] = Math.round(Math.random() * 10000); } a[i].setAttribute('mid', 'card_' + cardids[href]); a[i].onmouseover = function () { cardShow(this) }; a[i].onmouseout = function () { clearTimeout(USERCARDST); }; } }}
<!--{template common/header}--><!--{if !$_GET['inajax']}-->forumdisplay.htm文件里除头尾以外所有代码<!--{else}-->从forumdisplay.htm里复制出来关于版块信息部分的代码<!--{/if}--><!--{template common/footer}-->复制代码保存后访问链接forum.php?mod=forumdisplay&fid=43&inajax=1,显示的xml是else部分后加的代码。在首页帖子列表的版块链接里加上c=1试试:<a href="forum.php?mod=forumdisplay&fid={$value['fid']}" c=1>{$value['name']}</a>复制代码
<!--{template common/header}--><!--{if !$_GET['inajax']==1}-->正常的内容<!--{else}-->给c=1的<!--{/if}--><!--{template common/footer}-->