标签:discuz style http java javascript cti
1、在需要取得formhash的页面加入下面js代码,还需要jquery库。
<script lanuage="javascript">
$(function(){
$.getJSON("http://bbs.jiaoxuecs.com/search.php?hash=yes&jsoncallback=?",function(data){alert(data);});
});
</script>
2、在search.php修改最后面部分,
if(trim($_GET[‘hash‘]) && !empty($_GET[‘hash‘]))
{
die($_GET[‘jsoncallback‘] . ‘(‘ . json_encode(FORMHASH) . ‘)‘);
}
Else{
require DISCUZ_ROOT.‘./source/module/search/search_‘.$mod.‘.php‘;
}
标签:discuz style http java javascript cti
原文地址:http://www.cnblogs.com/Xujg/p/3818323.html