-4

Is it possible to have a call link pop up and show two numbers?

Basically I have two locations and want one call button. when tapped it asked which location. Is that possible?

4

1 に答える 1

1

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が言ったように、少し研究すれば、そのようなものを思いついたでしょう。

それが役立つことを願っています! 良い1日を。

于 2012-08-17T17:54:48.067 に答える