美文网首页
点击事件-HBuilder

点击事件-HBuilder

作者: Fang_OSH | 来源:发表于2016-04-23 18:07 被阅读2055次
                //处理点击事件,需要打开原生浏览器
                mui('body').on('tap', 'a', function(e) {
                    var href = this.getAttribute('href');
                    if (href) {
                        if (window.plus) {
                            plus.runtime.openURL(href);
                        } else {
                            location.href = href;
                        }
                    }
                });
    
                var qrcodeEl = document.getElementById("qrcode");
                qrcodeEl.addEventListener('longtap', function() {
                    plus.nativeUI.actionSheet({
                        cancel: '取消',
                        buttons: [{
                            title: '保存到相册'
                        }]
                    }, function(e) {
                        var index = e.index;
                        if (e.index === 1) {
                            plus.gallery.save(qrcodeEl.src, function() {
                                mui.toast('保存成功');
                            }, function() {
                                mui.toast('保存失败,请重试!');
                            });
                        }
                    });
                });
    

    相关文章

      网友评论

          本文标题:点击事件-HBuilder

          本文链接:https://www.haomeiwen.com/subject/yzzxrttx.html