codecamp

FollowButton

关注按钮对象


方法

onTap(function cb)

监听按钮点击事件.

当按钮时,唤起关注弹层,弹层被关闭时触发用户回调并传递一个 Object 对象:

属性类型说明
errCodeint关注结果错误码
errMsgstring关注失败时的详细错误信息

errCode 取值说明

说明
0关注成功
1关闭弹窗,取消关注
2关注失败,接口错误
3关注失败,网络错误

offTap(function cb)

移除 onTap 绑定的监听函数

destroy()

销毁按钮

show()

显示按钮

hide()

隐藏按钮

功能说明
tt.createFollowButton
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

无标题目录

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题目录

无标题文章

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }