不废话直接上代码:
HTML:
<a class="js-tel tel" data-tel="1312414"></a>
JS:
// zepto tel
$('body').on('tap', '.js-tel', function() {
var _this = $(this);
if (!_this.attr('href')) {
_this.attr('href', 'tel:' + _this.data('tel'));
_this.trigger('tap');
setTimeout(function() {
_this.removeAttr('href');
}, 500);
}
});