var bottom = { initPage:function(){ bottom.initData(); bottom.initStyle(); bottom.initBtn(); }, initBtn:function(){ bottom.weixinIdcard(); }, initStyle:function(loginDateList){ $("#leftMainProduct").text($("#leftMainProduct").text().substring(0,40)); $("#footerMainProduct").text($("#footerMainProduct").text().substring(0,50)); common.searchPull(); bottom.autoComplete(); }, initData : function(messageCount) { $('#weixinIdcard').qrcode({ render: "canvas", //table方式 width: 30, //宽度 height:30, //高度 text: $('#weixinIdcard').attr("data-url") //任意内容 }); }, autoComplete : function() { $("#keyword").autocomplete({ delay : 250, minLength : 1, source : function(request, response) { $.ajax({ type: "GET", cache : true, url : "/d17/suggest/" + $('#searchTypeList').find('li[value="'+$('#searchType').val()+'"]').attr('scene'), dataType : "json", data : { "keyword" : $.trim(request.term) }, success : function(data) { response(data.suggestList); } }); }, select: function( event, ui ) { $('#keyword').val(ui.item.value); $('#searchForm').submit(); } }); }, /*微信二维码*/ weixinIdcard : function() { $('#weixinIdcard').click(function(){ var src = $(this).children('img').attr('src'); $.msgBox.alert({ title : '手机网站二维码', width : 200, msg : '
'+ '
'+ '

扫一扫手机访问

'+ '
' }); $('#wxIdcardCode').qrcode({ render: "canvas", //table方式 width: 170, //宽度 height:170, //高度 text: $('#weixinIdcard').attr("data-url") //任意内容 }); }); } };