React手机拨号

React手机拨号

方法一

<a href={`tel:${item.contact_number}`}>拨号</a >

方法二

<Icon type="phone" theme="twoTone" twoToneColor="#52c41a" style={{ fontSize: '35px' }} onClick={exeCall.bind(this,`${item.contact_number}`)} />

let exeCall = (contact_number) => {
        window.location.href = `tel:${contact_number}`
    }
发布了38 篇原创文章 · 获赞 32 · 访问量 598

猜你喜欢

转载自blog.csdn.net/Asia1752/article/details/103889439