| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936 |
- String.prototype.replaceAll = function(s1,s2){ return this.replace(new RegExp(s1,"gm"),s2); }
- String.prototype.trim=function(){ return this.replace(/(^\s*)|(\s*$)/g, ""); }
- var base64EncodeChars="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";var base64DecodeChars=new Array(-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,62,-1,-1,-1,63,52,53,54,55,56,57,58,59,60,61,-1,-1,-1,-1,-1,-1,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-1,-1,-1,-1,-1,-1,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,-1,-1,-1,-1,-1);function base64encode(str){var out,i,len;var c1,c2,c3;len=str.length;i=0;out="";while(i<len){c1=str.charCodeAt(i++)&0xff;if(i==len){out+=base64EncodeChars.charAt(c1>>2);out+=base64EncodeChars.charAt((c1&0x3)<<4);out+="==";break}c2=str.charCodeAt(i++);if(i==len){out+=base64EncodeChars.charAt(c1>>2);out+=base64EncodeChars.charAt(((c1&0x3)<<4)|((c2&0xF0)>>4));out+=base64EncodeChars.charAt((c2&0xF)<<2);out+="=";break}c3=str.charCodeAt(i++);out+=base64EncodeChars.charAt(c1>>2);out+=base64EncodeChars.charAt(((c1&0x3)<<4)|((c2&0xF0)>>4));out+=base64EncodeChars.charAt(((c2&0xF)<<2)|((c3&0xC0)>>6));out+=base64EncodeChars.charAt(c3&0x3F)}return out}function base64decode(str){var c1,c2,c3,c4;var i,len,out;len=str.length;i=0;out="";while(i<len){do{c1=base64DecodeChars[str.charCodeAt(i++)&0xff]}while(i<len&&c1==-1);if(c1==-1)break;do{c2=base64DecodeChars[str.charCodeAt(i++)&0xff]}while(i<len&&c2==-1);if(c2==-1)break;out+=String.fromCharCode((c1<<2)|((c2&0x30)>>4));do{c3=str.charCodeAt(i++)&0xff;if(c3==61)return out;c3=base64DecodeChars[c3]}while(i<len&&c3==-1);if(c3==-1)break;out+=String.fromCharCode(((c2&0XF)<<4)|((c3&0x3C)>>2));do{c4=str.charCodeAt(i++)&0xff;if(c4==61)return out;c4=base64DecodeChars[c4]}while(i<len&&c4==-1);if(c4==-1)break;out+=String.fromCharCode(((c3&0x03)<<6)|c4)}return out}function utf16to8(str){var out,i,len,c;out="";len=str.length;for(i=0;i<len;i++){c=str.charCodeAt(i);if((c>=0x0001)&&(c<=0x007F)){out+=str.charAt(i)}else if(c>0x07FF){out+=String.fromCharCode(0xE0|((c>>12)&0x0F));out+=String.fromCharCode(0x80|((c>>6)&0x3F));out+=String.fromCharCode(0x80|((c>>0)&0x3F))}else{out+=String.fromCharCode(0xC0|((c>>6)&0x1F));out+=String.fromCharCode(0x80|((c>>0)&0x3F))}}return out}function utf8to16(str){var out,i,len,c;var char2,char3;out="";len=str.length;i=0;while(i<len){c=str.charCodeAt(i++);switch(c>>4){case 0:case 1:case 2:case 3:case 4:case 5:case 6:case 7:out+=str.charAt(i-1);break;case 12:case 13:char2=str.charCodeAt(i++);out+=String.fromCharCode(((c&0x1F)<<6)|(char2&0x3F));break;case 14:char2=str.charCodeAt(i++);char3=str.charCodeAt(i++);out+=String.fromCharCode(((c&0x0F)<<12)|((char2&0x3F)<<6)|((char3&0x3F)<<0));break}}return out}
- var MAC={
- 'Url': document.URL,
- 'Title': document.title,
- 'UserAgent' : function(){
- var ua = navigator.userAgent;//navigator.appVersion
- return {
- 'mobile': !!ua.match(/AppleWebKit.*Mobile.*/), //是否为移动终端
- 'ios': !!ua.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端
- 'android': ua.indexOf('Android') > -1 || ua.indexOf('Linux') > -1, //android终端或者uc浏览器
- 'iPhone': ua.indexOf('iPhone') > -1 || ua.indexOf('Mac') > -1, //是否为iPhone或者QQHD浏览器
- 'iPad': ua.indexOf('iPad') > -1, //是否iPad
- 'trident': ua.indexOf('Trident') > -1, //IE内核
- 'presto': ua.indexOf('Presto') > -1, //opera内核
- 'webKit': ua.indexOf('AppleWebKit') > -1, //苹果、谷歌内核
- 'gecko': ua.indexOf('Gecko') > -1 && ua.indexOf('KHTML') == -1, //火狐内核
- 'weixin': ua.indexOf('MicroMessenger') > -1 //是否微信 ua.match(/MicroMessenger/i) == "micromessenger",
- };
- }(),
- 'Copy': function(s){
- if (window.clipboardData){ window.clipboardData.setData("Text",s); }
- else{
- if( $("#mac_flash_copy").get(0) ==undefined ){ $('<div id="mac_flash_copy"></div>'); } else {$('#mac_flash_copy').html(''); }
- $('#mac_flash_copy').html('<embed src='+maccms.path+'"images/_clipboard.swf" FlashVars="clipboard='+escape(s)+'" width="0" height="0" type="application/x-shockwave-flash"></embed>');
- }
- MAC.Pop.Msg(100,20,'复制成功',1000);
- },
- 'Home': function(o,u){
- try{
- o.style.behavior='url(#default#homepage)'; o.setHomePage(u);
- }
- catch(e){
- if(window.netscape){
- try{netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");}
- catch(e){ MAC.Pop.Msg(150,40,'此操作被浏览器拒绝!请手动设置',1000); }
- var moz = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch);
- moz.setCharPref('browser.startup.homepage',u);
- }
- }
- },
- 'Fav': function(u,s){
- try{ window.external.addFavorite(u, s);}
- catch (e){
- try{window.sidebar.addPanel(s, u, "");}catch (e){ MAC.Pop.Msg(150,40,'加入收藏出错,请使用键盘Ctrl+D进行添加',1000); }
- }
- },
- 'Open': function(u,w,h){
- window.open(u,'macopen1','toolbars=0, scrollbars=0, location=0, statusbars=0,menubars=0,resizable=yes,width='+w+',height='+h+'');
- },
- 'Cookie': {
- 'Set': function(name,value,days){
- var exp = new Date();
- exp.setTime(exp.getTime() + days*24*60*60*1000);
- var arr=document.cookie.match(new RegExp("(^| )"+name+"=([^;]*)(;|$)"));
- document.cookie=name+"="+encodeURIComponent(value)+";path=/;expires="+exp.toUTCString();
- },
- 'Get': function(name){
- var arr = document.cookie.match(new RegExp("(^| )"+name+"=([^;]*)(;|$)"));
- if(arr != null){ return decodeURIComponent(arr[2]); return null; }
- },
- 'Del': function(name){
- var exp = new Date();
- exp.setTime(exp.getTime()-1);
- var cval = this.Get(name);
- if(cval != null){ document.cookie = name+"="+encodeURIComponent(cval)+";path=/;expires="+exp.toUTCString(); }
- }
- },
- 'GoBack':function(){
- var ldghost=document.domain;
- if(document.referrer.indexOf(ldghost)>0) {
- history.back();
- }
- else{
- window.location ="//"+ldghost;
- }
- },
- 'Adaptive':function(){
- if(maccms.mob_status=='1' && maccms.url != maccms.wapurl){
- if(document.domain ==maccms.url && MAC.UserAgent.mobile){
- location.href = location.href.replace(maccms.url,maccms.wapurl);
- }
- else if(document.domain ==maccms.wapurl && !MAC.UserAgent.mobile){
- location.href = location.href.replace(maccms.wapurl,maccms.url);
- }
- }
- },
- 'CheckBox':{
- 'All':function(n){
- $("input[name='"+n+"']").each(function() {
- this.checked = true;
- });
- },
- 'Other':function(n){
- $("input[name='"+n+"']").each(function() {
- this.checked = !this.checked;
- });
- },
- 'Count':function(n){
- var res=0;
- $("input[name='"+n+"']").each(function() {
- if(this.checked){ res++; }
- });
- return res;
- },
- 'Ids':function(n){
- var res=[];
- $("input[name='"+n+"']").each(function() {
- if(this.checked){ res.push(this.value); }
- });
- return res.join(",");
- }
- },
- 'Ajax':function(url,type,dataType,data,sfun,efun,cfun){
- type=type||'get';
- dataType=dataType||'json';
- data=data||'';
- efun=efun||'';
- cfun=cfun||'';
- $.ajax({
- url:url,
- type:type,
- dataType:dataType,
- data:data,
- timeout: 5000,
- beforeSend:function(XHR){
- },
- error:function(XHR,textStatus,errorThrown){
- if(efun) efun(XHR,textStatus,errorThrown);
- },
- success:function(data){
- sfun(data);
- },
- complete:function(XHR, TS){
- if(cfun) cfun(XHR, TS);
- }
- })
- },
- 'Qrcode':{
- 'Init':function(){
- $('.mac_qrcode').attr('src', maccms.path +'/index.php/qrcode/index.html?url='+ MAC.Url);
- }
- },
- 'Shorten': {
- 'Init':function(){
- if($('.mac_shorten').length==0){
- return;
- }
- MAC.Shorten.Get();
- },
- 'Get':function(url,call){
- url=url||location.href;
- MAC.Ajax('//api.maccms.la/shorten/index/url/'+ encodeURIComponent(url),'get','jsonp','',function(r){
- if (r.code == 1) {
- if($('.mac_shorten').length>0) {
- $('.mac_shorten').val(r.data.url_short);
- $('.mac_shorten').html(r.data.url_short);
- }
- if(call){
- call(r);
- }
- }
- });
- }
- },
- 'Image':{
- 'Lazyload':{
- 'Show': function(){
- try { $("img.lazy").lazyload(); }catch(e){};
- },
- 'Box': function($id){
- $("img.lazy").lazyload({
- container: $("#"+$id)
- });
- }
- }
- },
- 'Verify': {
- 'Init': function(){
- MAC.Verify.Focus();
- MAC.Verify.Click();
- },
- 'Focus': function(){//验证码框焦点
- $('body').on("focus", ".mac_verify", function(){
- $(this).removeClass('mac_verify').after(MAC.Verify.Show());
- $(this).unbind();
- });
- },
- 'Click': function(){//点击刷新
- $('body').on('click', 'img.mac_verify_img', function(){
- $(this).attr('src', maccms.path +'/index.php/verify/index.html?r='+Math.random());
- });
- },
- 'Refresh':function(){
- $('.mac_verify_img').attr('src', maccms.path +'/index.php/verify/index.html?r='+Math.random());
- },
- 'Show':function(){
- return '<img class="mac_verify_img" src="'+ maccms.path +'/index.php/verify/index.html?" title="看不清楚? 换一张!">';
- }
- },
- 'PageGo':{
- 'Init':function() {
- $('.mac_page_go').click(function () {
- var that =$(this);
- var url = that.attr('data-url');
- var total = parseInt(that.attr('data-total'));
- var sp = that.attr('data-sp');
- var page= parseInt($('#page').val());
- if(page>0&&(page<=total)){
- url=url.replace(sp + 'PAGELINK',sp + page).replace('PAGELINK',page);
- location.href=url;
- }
- return false;
- });
- }
- },
- 'Hits': {
- 'Init':function() {
- if($('.mac_hits').length==0){
- return;
- }
- var $that = $(".mac_hits");
- MAC.Ajax(maccms.path + '/index.php/ajax/hits?mid='+$that.attr("data-mid")+'&id='+$that.attr("data-id")+'&type=update','get','json','',function(r){
- if (r.code == 1) {
- $(".mac_hits").each(function(i){
- $type = $(".mac_hits").eq(i).attr('data-type');
- if($type != 'insert'){
- $('.'+$type).html(eval('(r.data.' + $type + ')'));
- }
- });
- }
- });
- }
- },
- 'Score': {
- 'Init':function(){
- if($('.mac_score').length==0){
- return;
- }
- $('body').on('click', '.score_btn', function(e){
- MAC.Score.Submit();
- });
- MAC.Ajax(maccms.path+'/index.php/ajax/score?mid='+ $('.mac_score').attr('data-mid') +'&id=' +$('.mac_score').attr('data-id'),'post','json','',function(r){
- MAC.Score.View(r);
- },function(){
- $(".mac_score").html('评分加载失败');
- });
- },
- 'Submit':function(){
- var $s = $('.mac_score').find("input[name='score']").val();
- MAC.Ajax(maccms.path+'/index.php/ajax/score?mid='+$('.mac_score').attr('data-mid')+'&id='+$('.mac_score').attr('data-id') + '&score='+ $s,'get','json','',function(r){
- MAC.Pop.Msg(100,20,r.msg,1000);
- if(r.code==1){
- MAC.Score.View(r);
- }
- });
- },
- 'View':function(r){
- $(".rating"+Math.floor(r.data.score)).attr('checked',true);
- $(".score_num").text(r.data.score_num);
- $(".score_all").text(r.data.score_all);
- $(".score_pjf").text(r.data.score);
- }
- },
- 'Star': {
- 'Init':function(){
- if($('.mac_star').length==0){
- return;
- }
- $('.mac_star').raty({
- starType: 'i',
- number: 5,
- numberMax : 5,
- half: true,
- score : function(){
- return $(this).attr('data-score');
- },
- click: function(score, evt) {
- MAC.Ajax(maccms.path+'/index.php/ajax/score?mid='+$('.mac_star').attr('data-mid')+'&id='+$('.mac_star').attr('data-id')+'&score='+(score*2),'get','json','',function(r){
- if(json.status == 1){
- $('.star_tips').html(r.data.score);
- }else{
- $('.star_box').attr('title', r.msg);
- }
- },function(){
- $('.star_box').attr('title', '网络异常!');
- });
- }
- });
- }
- },
- 'Digg': {
- 'Init':function(){
- $('body').on('click', '.digg_link', function(e){
- var $that = $(this);
- if($that.attr("data-id")){
- MAC.Ajax(maccms.path + '/index.php/ajax/digg.html?mid='+$that.attr("data-mid")+'&id='+$that.attr("data-id")+'&type='+$that.attr("data-type"),'get','json','',function(r){
- $that.addClass('disabled');
- if(r.code == 1){
- if($that.attr("data-type")=='up'){
- $that.find('.digg_num').html(r.data.up);
- }
- else{
- $that.find('.digg_num').html(r.data.down);
- }
- }
- else{
- $that.attr('title', r.msg);
- }
- });
- }
- });
- }
- },
- 'Gbook':{
- 'Login':0,
- 'Verify':0,
- 'Init':function(){
- $('body').on('keyup', '.gbook_content', function(e){
- MAC.Remaining($(this),200,'.gbook_remaining')
- });
- $('body').on('focus', '.gbook_content', function(e){
- if(MAC.Gbook.Login==1 && MAC.User.IsLogin!=1){
- MAC.User.Login();
- }
- });
- $('body').on('click', '.gbook_submit', function(e){
- MAC.Gbook.Submit();
- });
- },
- 'Show':function($page){
- MAC.Ajax(maccms.path+'/index.php/gbook/index?page='+$page,'post','json','',function(r){
- $(".mac_gbook_box").html(r);
- },function(){
- $(".mac_gbook_box").html('留言加载失败,请刷新...');
- });
- },
- 'Submit':function(){
- if($(".gbook_content").val() == ''){
- MAC.Pop.Msg(100,20,'请输入您的留言!',1000);
- return false;
- }
- MAC.Ajax(maccms.path + '/index.php/gbook/saveData','post','json',$('.gbook_form').serialize(),function(r){
- MAC.Pop.Msg(100,20,r.msg,1000);
- if(r.code == 1){
- location.reload();
- }
- else{
- if(MAC.Gbook.Verify==1){
- MAC.Verify.Refresh();
- }
- }
- });
- },
- 'Report':function(name,id){
- MAC.Pop.Show(400,300,'数据报错',maccms.path+'/index.php/gbook/report.html?id='+id+'&name='+ encodeURIComponent(name),function(r){
- });
- }
- },
- 'Search':{
- 'Init':function(){
- $('.mac_search').click(function(){
- var that=$(this);
- var url = that.attr('data-href') ? that.attr('data-href') : maccms.path + '/index.php/vod/search.html';
- location.href = url + '?wd='+ encodeURIComponent($("#wd").val());
- });
- },
- 'Submit':function(){
- return false;
- }
- },
- 'Suggest':{
- 'Init':function($obj,$mid,$jumpurl){
- try {
- $($obj).autocomplete(maccms.path + '/index.php/ajax/suggest?mid=' + $mid, {
- inputClass: "mac_input",
- resultsClass: "mac_results",
- loadingClass: "mac_loading",
- width: 175, scrollHeight: 300, minChars: 1, matchSubset: 0,
- cacheLength: 10, multiple: false, matchContains: true, autoFill: false,
- dataType: "json",
- parse: function (r) {
- if (r.code == 1) {
- var parsed = [];
- $.each(r['list'], function (index, row) {
- row.url = r.url;
- parsed[index] = {
- data: row
- };
- });
- return parsed;
- } else {
- return {data: ''};
- }
- },
- formatItem: function (row, i, max) {
- return row.name;
- },
- formatResult: function (row, i, max) {
- return row.text;
- }
- }).result(function (event, data, formatted) {
- $($obj).val(data.name);
- location.href = data.url.replace('mac_wd', encodeURIComponent(data.name));
- });
- }
- catch(e){}
- }
- },
- 'History': {
- 'BoxShow':0,
- 'Limit':10,
- 'Days':7,
- 'Json':'',
- 'Init':function(){
- if($('.mac_history').length ==0){
- return;
- }
- $('.mac_history').hover(function(e){
- $('.mac_history_box').show();
- }, function(){
- $('.mac_history_box').hover(function(){
- MAC.History.BoxShow=1;
- }, function(){
- MAC.History.BoxShow=0;
- $('.mac_history_box').hide();
- });
- });
- var jsondata = [];
- if(this.Json){
- jsondata = this.Json;
- }else{
- var jsonstr = MAC.Cookie.Get('mac_history');
- if(jsonstr != undefined){
- jsondata = eval(jsonstr);
- }
- }
- html = '<dl class="mac_drop_box mac_history_box" style="display:none;">';
- html +='<dt><a target="_self" href="javascript:void(0)" onclick="MAC.History.Clear();">清空</a></dt>';
- if(jsondata.length > 0){
- for($i=0; $i<jsondata.length; $i++){
- if($i%2==1){
- html +='<dd class="odd">';
- }else{
- html +='<dd class="even">';
- }
- html +='<a href="'+jsondata[$i].link+'" class="hx_title">'+jsondata[$i].name+'</a></dd>';
- }
- }else{
- html +='<dd class="hide">暂无浏览记录</dd>';
- }
- html += '</dl>';
- $('.mac_history').after(html);
- var h = $('.mac_history').height();
- var position = $('.mac_history').position();
- $('.mac_history_box').css({'left':position.left,'top':(position.top+h)});
- if($(".mac_history_set").attr('data-name')){
- var $that = $(".mac_history_set");
- MAC.History.Set($that.attr('data-name'),$that.attr('data-link'),$that.attr('data-pic'));
- }
- },
- 'Set':function(name,link,pic){
- if(!link){ link = document.URL; }
- var jsondata = MAC.Cookie.Get('mac_history');
- if(jsondata != undefined){
- this.Json = eval(jsondata);
- for($i=0;$i<this.Json.length;$i++){
- if(this.Json[$i].link == link){
- return false;
- }
- }
- jsonstr = '{log:[{"name":"'+name+'","link":"'+link+'","pic":"'+pic+'"},';
- for($i=0; $i<this.Json.length; $i++){
- if($i<= this.Limit && this.Json[$i]){
- jsonstr += '{"name":"'+this.Json[$i].name+'","link":"'+this.Json[$i].link+'","pic":"'+this.Json[$i].pic+'"},';
- }else{
- break;
- }
- }
- jsonstr = jsonstr.substring(0,jsonstr.lastIndexOf(','));
- jsonstr += "]}";
- }else{
- jsonstr = '{log:[{"name":"'+name+'","link":"'+link+'","pic":"'+pic+'"}]}';
- }
- this.Json = eval(jsonstr);
- MAC.Cookie.Set('mac_history',jsonstr,this.Days);
- },
- 'Clear': function(){
- MAC.Cookie.Del('mac_history');
- $('.mac_history_box').html('<li class="hx_clear">已清空观看记录。</li>');
- },
- },
- 'Ulog':{
- 'Init':function(){
- MAC.Ulog.Set();
- MAC.Ulog.Click();
- },
- 'Get':function(mid,id,type,page,limit,call){
- MAC.Ajax(maccms.path+'/index.php/user/ajax_ulog/?ac=list&mid='+mid+'&id='+id+'&type='+type+'&page='+page+'&limit='+limit,'get','json','',call);
- },
- 'Set':function(){
- if($(".mac_ulog_set").attr('data-mid')){
- var $that = $(".mac_ulog_set");
- $.get(maccms.path+'/index.php/user/ajax_ulog/?ac=set&mid='+$that.attr("data-mid")+'&id='+$that.attr("data-id")+'&sid='+$that.attr("data-sid")+'&nid='+$that.attr("data-nid")+'&type='+$that.attr("data-type"));
- }
- },
- 'Click':function(){
- $('body').on('click', 'a.mac_ulog', function(e){
- //是否需要验证登录
- if(MAC.User.IsLogin == 0){
- MAC.User.Login();
- return;
- }
- var $that = $(this);
- if($that.attr("data-id")){
- MAC.Ajax(maccms.path+'/index.php/user/ajax_ulog/?ac=set&mid='+$that.attr("data-mid")+'&id='+$that.attr("data-id")+'&type='+$that.attr("data-type"),'get','json','',function(r){
- MAC.Pop.Msg(100,20,r.msg,1000);
- if(r.code == 1){
- $that.addClass('disabled');
- }else{
- $that.attr('title', r.msg);
- }
- });
- }
- });
- }
- },
- 'Website':{
- 'Referer':function() {
- if($('.mac_referer').length==0){
- return;
- }
- var url = document.referrer
- ,domain=''
- ,host = window.location.host
- ,reg = /^http(s)?:\/\/(.*?)\//i
- ,mc = url.match(reg);
- if(url=='' || url.indexOf(host)!=-1 || mc ==null){
- return;
- }
- domain = mc[2];
- MAC.Ajax(maccms.path + '/index.php/ajax/referer?domain='+encodeURIComponent(domain)+'&url='+encodeURIComponent(url)+'&type=update','get','json','',function(r){
- if (r.code == 1) {
- }
- console.log(r);
- });
- }
- },
- 'User':{
- 'BoxShow':0,
- 'IsLogin':0,
- 'UserId':'',
- 'UserName':'',
- 'GroupId':'',
- 'GroupName':'',
- 'Portrait':'',
- 'Init':function(){
- if($('.mac_user').length >0){
- $('body').on('click', '.mac_user', function(e){
- MAC.User.Login();
- });
- $('.mac_user').hover(function(e){
- $('.mac_user_box').show();
- }, function(){
- $('.mac_user_box').hover(function(){
- MAC.User.BoxShow = 1;
- }, function(){
- MAC.User.BoxShow = 0;
- $('.mac_user_box').hide();
- });
- });
- }
- if(MAC.Cookie.Get('user_id') !=undefined && MAC.Cookie.Get('user_id')!=''){
- var url = maccms.path + '/index.php/user';
- MAC.User.UserId = MAC.Cookie.Get('user_id');
- MAC.User.UserName = MAC.Cookie.Get('user_name');
- MAC.User.GroupId = MAC.Cookie.Get('group_id');
- MAC.User.GroupName = MAC.Cookie.Get('group_name');
- MAC.User.Portrait = MAC.Cookie.Get('user_portrait');
- MAC.User.IsLogin = 1;
- if($('.mac_user').length >0) {
- if ($('.mac_user').prop("outerHTML").substr(0, 2) == '<a') {
- $('.mac_user').attr('href', url);
- $('.mac_user').text(MAC.User.UserName);
- }
- else {
- //$('.mac_user').html('<a class="mac_text" href="'+ url +'">'+ name +'</a>');
- }
- var html = '<div class="mac_drop_box mac_user_box" style="display: none;">';
- html += '<ul class="logged"><li><a target="_blank" href="' + url + '">用户中心</a></li><li class="logout"><a class="logoutbt" href="javascript:;" onclick="MAC.User.Logout();" target="_self"><i class="user-logout"></i>退出</a></li></ul>'
- $('.mac_user').after(html);
- var h = $('.mac_user').height();
- var position = $('.mac_user').position();
- $('.mac_user_box').css({'left': position.left, 'top': (position.top + h)});
- }
- }
- else{
- }
- },
- 'CheckLogin':function(){
- if(MAC.User.IsLogin == 0){
- MAC.User.Login();
- }
- },
- 'Login':function(){
- var ac='ajax_login';
- if(MAC.Cookie.Get('user_id') !=undefined && MAC.Cookie.Get('user_id')!=''){
- ac= 'ajax_info';
- }
- MAC.Pop.Show(400,380,'用户登录',maccms.path+'/index.php/user/'+ac,function(r){
- $('body').off('click', '.login_form_submit');
- $('body').on('click', '.login_form_submit', function(e){
- $(this).unbind('click');
- MAC.Ajax(maccms.path + '/index.php/user/login','post','json',$('.mac_login_form').serialize(),function(r){
- alert(r.msg);
- if(r.code == 1){
- location.reload();
- }
- });
- });
- });
- },
- 'Logout':function(){
- MAC.Ajax(maccms.path + '/index.php/user/logout','post','json','',function(r){
- MAC.Pop.Msg(100,20,r.msg,1000);
- if(r.code == 1){
- location.reload();
- }
- });
- },
- 'PopedomCallBack':function(trysee,h) {
- window.setTimeout(function(){
- $(window.frames["player_if"].document).find(".MacPlayer").html(h);
- },1000*10*trysee);
- },
- 'BuyPopedom':function(o){
- var $that = $(o);
- if($that.attr("data-id")){
- if (confirm('您确认购买此条数据访问权限吗?')) {
- MAC.Ajax(maccms.path + '/index.php/user/ajax_buy_popedom.html?id=' + $that.attr("data-id") + '&mid=' + $that.attr("data-mid") + '&sid=' + $that.attr("data-sid") + '&nid=' + $that.attr("data-nid") + '&type=' + $that.attr("data-type"),'get','json','',function(r){
- $that.addClass('disabled');
- MAC.Pop.Msg(300, 50, r.msg, 2000);
- if (r.code == 1) {
- top.location.reload();
- }
- $that.removeClass('disabled');
- });
- }
- }
- }
- },
- 'Pop':{
- 'Remove':function(){
- $('.mac_pop_bg').remove();
- $('.mac_pop').remove();
- },
- 'RemoveMsg':function(){
- $('.mac_pop_msg_bg').remove();
- $('.mac_pop_msg').remove();
- },
- 'Msg':function($w,$h,$msg,$timeout){
- if($('.mac_pop_bg').length !=1) {
- MAC.Pop.Remove();
- }
- $('body').append('<div class="mac_pop_msg_bg"></div><div class="mac_pop_msg"><div class="pop-msg"></div></div>');
- $('.mac_pop_msg .pop_close').click(function(){
- $('.mac_pop_msg').remove();
- });
- $('.mac_pop_msg').width($w);
- $('.mac_pop_msg').height($h);
- $('.mac_pop_msg .pop-msg').html($msg);
- $('.mac_pop_msg_bg,.mac_pop_msg').show();
- setTimeout(MAC.Pop.RemoveMsg,$timeout);
- },
- 'Show':function($w,$h,$title,$url,$callback) {
- if($('.mac_pop_bg').length !=1) {
- MAC.Pop.Remove();
- }
- $('body').append('<div class="mac_pop_bg"></div><div class="mac_pop"><div class="pop_top"><h2></h2><span class="pop_close">X</span></div><div class="pop_content"></div></div>');
- $('.mac_pop .pop_close').click(function(){
- $('.mac_pop_bg,.mac_pop').remove();
- });
- $('.mac_pop').width($w);
- $('.mac_pop').height($h);
- $('.pop_content').html('');
- $('.pop_top').find('h2').html($title);
- MAC.Ajax($url,'post','json','',function(r){
- $(".pop_content").html(r);
- $callback(r);
- },function(){
- $(".pop_content").html('加载失败,请刷新...');
- });
- $('.mac_pop_bg,.mac_pop').show();
- }
- },
- 'Pwd':{
- 'Check':function(o){
- var $that = $(o);
- if($that.attr("data-id")){
- MAC.Ajax(maccms.path + '/index.php/ajax/pwd.html?id=' + $that.attr("data-id") + '&mid=' + $that.attr("data-mid") + '&type=' + $that.attr("data-type") + '&pwd='+ $that.parents('form').find('input[name="pwd"]').val() ,'get','json','',function(r){
- $that.addClass('disabled');
- MAC.Pop.Msg(300, 50, r.msg, 2000);
- if (r.code == 1) {
- location.reload();
- }
- $that.removeClass('disabled');
- });
- }
- }
- },
- 'AdsWrap':function(w,h,n){
- document.writeln('<img width="'+w+'" height="'+h+'" alt="'+n+'" style="background-color: #CCCCCC" />');
- },
- 'Css':function($url){
- $("<link>").attr({ rel: "stylesheet",type: "text/css",href: $url}).appendTo("head");
- },
- 'Js':function($url){
- $.getScript($url, function(response, status) {
- });
- },
- 'Desktop':function(s){
- location.href= maccms.path + '/index.php/ajax/desktop?name='+encodeURI(s)+'&url=' + encodeURI(location.href);
- },
- 'Timming':function(){
- if($('.mac_timming').length==0){
- return;
- }
- var infile = $('.mac_timming').attr("data-file");
- if(infile==undefined || infile == ''){
- infile = 'api.php';
- }
- var t=(new Image());t.src=maccms.path + '/'+infile+'/timming/index?t='+Math.random();
- },
- 'Error':function(tab,id,name){
- },
- 'AddEm':function(obj,i){
- var oldtext = $(obj).val();
- $(obj).val( oldtext + '[em:' + i +']' );
- },
- 'Remaining':function(obj,len,show){
- var count = len - $(obj).val().length;
- if(count < 0){
- count = 0;
- $(obj).val($(obj).val().substr(0,200));
- }
- $(show).text(count);
- },
- 'Comment':{
- 'Login':0,
- 'Verify':0,
- 'Init':function(){
- $('body').on('click', '.comment_face_box img', function(e){
- var obj = $(this).parent().parent().parent().find('.comment_content');
- MAC.AddEm(obj,$(this).attr('data-id'));
- });
- $('body').on('click', '.comment_face_panel', function(e){
- // $('.comment_face_box').toggle();
- $(this).parent().find('.comment_face_box').toggle();
- });
- $('body').on('keyup', '.comment_content', function(e){
- var obj = $(this).parent().parent().parent().parent().find('.comment_remaining');
- MAC.Remaining($(this),200,obj)
- });
- $('body').on('focus', '.comment_content', function(e){
- if(MAC.Comment.Login==1 && MAC.User.IsLogin!=1){
- MAC.User.Login();
- }
- });
- $('body').on('click', '.comment_report', function(e){
- var $that = $(this);
- if($(this).attr("data-id")){
- MAC.Ajax(maccms.path + '/index.php/comment/report.html?id='+$that.attr("data-id"),'get','json','',function(r){
- $that.addClass('disabled');
- MAC.Pop.Msg(100,20,r.msg,1000);
- if(r.code == 1){
- }
- });
- }
- });
- $('body').on('click', '.comment_reply', function(e){
- var $that = $(this);
- if($that.attr("data-id")){
- var str = $that.html();
- $('.comment_reply_form').remove();
- if (str == '取消回复') {
- $that.html('回复');
- return false;
- }
- if (str == '回复') {
- $('.comment_reply').html('回复');
- }
- var html = $('.comment_form').prop("outerHTML");
- var oo = $(html);
- oo.addClass('comment_reply_form');
- oo.find('input[name="comment_pid"]').val( $that.attr("data-id") );
- $that.parent().after(oo);
- $that.html('取消回复');
- }
- });
- $('body').on('click', '.comment_submit', function(e){
- var $that = $(this);
- MAC.Comment.Submit($that);
- });
- },
- 'Show':function($page){
- if($(".mac_comment").length>0){
- MAC.Ajax(maccms.path + '/index.php/comment/ajax.html?rid='+$('.mac_comment').attr('data-id')+'&mid='+ $('.mac_comment').attr('data-mid') +'&page='+$page,'get','json','',function(r){
- $(".mac_comment").html(r);
- },function(){
- $(".mac_comment").html('<a href="javascript:void(0)" onclick="MAC.Comment.Show('+$page+')">评论加载失败,点击我刷新...</a>');
- });
- }
- },
- 'Reply':function($o){
- },
- 'Submit':function($o){
- var form = $o.parents('form');
- if($(form).find(".comment_content").val() == ''){
- MAC.Pop.Msg(100,20,'请输入您的评论!',1000);
- return false;
- }
- if($('.mac_comment').attr('data-mid') == ''){
- MAC.Pop.Msg(100,20,'模块mid错误!',1000);
- return false;
- }
- if($('.mac_comment').attr('data-id') == ''){
- MAC.Pop.Msg(100,20,'关联id错误!',1000);
- return false;
- }
- MAC.Ajax(maccms.path + '/index.php/comment/saveData','post','json',$(form).serialize() + '&comment_mid='+ $('.mac_comment').attr('data-mid') + '&comment_rid=' + $('.mac_comment').attr('data-id'),function(r){
- MAC.Pop.Msg(100,20,r.msg,1000);
- if(r.code == 1){
- MAC.Comment.Show(1);
- }
- else{
- if(MAC.Comment.Verify==1){
- MAC.Verify.Refresh();
- }
- }
- });
- }
- }
- }
- $(function(){
- //异步加载图片初始化
- MAC.Image.Lazyload.Show();
- //自动跳转手机和pc网页地址
- MAC.Adaptive();
- //验证码初始化
- MAC.Verify.Init();
- //分页跳转初始化
- MAC.PageGo.Init();
- //用户部分初始化
- MAC.User.Init();
- //二维码初始化
- MAC.Qrcode.Init();
- //顶和踩初始化
- MAC.Digg.Init();
- //评分初始化
- MAC.Score.Init();
- //星星评分初始化
- MAC.Star.Init();
- //点击数量
- MAC.Hits.Init();
- //短网址
- MAC.Shorten.Init();
- //历史记录初始化
- MAC.History.Init();
- //用户访问记录初始化
- MAC.Ulog.Init();
- //联想搜索初始化
- MAC.Suggest.Init('.mac_wd',1,'');
- //网址导航来路统计
- MAC.Website.Referer();
- //定时任务初始化
- MAC.Timming();
- });
|