是否可以弹出一个通话链接并显示两个号码?
基本上我有两个位置,想要一个呼叫按钮。当点击它询问哪个位置。那可能吗?
我会使用 jQuery 移动对话框。
对话框的内容看起来像这样:
<div data-role="dialog">
<div data-role="header" data-theme="d">
<h1>Dialog</h1>
</div>
<div data-role="content" data-theme="c">
<h1>Which location?</h1>
<p>Wich number do you wan't to call</p>
<a href="tel:+440000000000" data-role="button" data-rel="back" data-theme="b">First location</a>
<a href="tel:+440000000000" data-role="button" data-rel="back" data-theme="b">Second location</a>
</div>
</div>
其中“+440000000000”是电话号码。正如@Shae 所说,进行一些研究,您就会想出类似的东西。
希望有帮助!祝你今天过得愉快。