不廢話直接上代碼: 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);
不廢話直接上代碼:
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 });