手机端页面常用点

1.拨打电话  <a href="tel:4008001234" class="call"></a>

可唤起安卓与手机端的拨打电话

2.点击复制电话号

 // let text = document.createElement('input');
            //document.body.appendChild(text);
            //text.value = this.phoneNumber;
    let text = document.getElementById("biao1");
            text.select();
            document.execCommand('Copy');
            text.style.display = 'none';
            this.mark();
            console.log('  复制成功 ');    

猜你喜欢

转载自www.cnblogs.com/lanyueff/p/9101320.html
今日推荐