ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 非刷新加载数据,如点击载入数据则无需ref_down_end复位操作 ~~~ $('#click').on('click',function(){ var Ucache = decode_Uinfo(); var para = {}; para.url = 'url'; para.data = {'sbh_type':'down_click','uuid':uuid,'u_id':Ucache.u_id,'PIN':1}; para.pass = ['uuid','u_id']; net(para); }); //1.浮框显示回调信息 function exec_down_click(o){ $('#PIN').val(o.next); var list = $('#list'); switch(o.succeed){ case 2: list.html(''); sbh_note(o.msg); break; default: list.html(list_template(o)); break; } } //2.载入无数据文字 function exec_down_click(o){ $('#PIN').val(o.next); var list = $('#list'); switch(o.succeed){ case 2: list.html('<div style="text-align: center; color: #CCCCCC;">' + o.msg + '</div>'); break; default: list.html(list_template(o)); break; } } ~~~