『奇葩问题集锦』Zepto 页面唤醒拨号功能点透
不废话直接上代码:
HTML:
<a class="js-tel tel" data-tel="1312414"></a>
JS:
1 // zepto tel 2 $('body').on('tap', '.js-tel', function() { 3 var _this = $(this); 4 if (!_this.attr('href')) { 5 _this.attr('href', 'tel:' + _this.data('tel')); 6 _this.trigger('tap'); 7 setTimeout(function() { 8 _this.removeAttr('href'); 9 }, 500); 10 } 11 });