数字不显示在Iphone上

时间:2017-06-17 19:55:42

标签: html iphone

<?php require('php/header.php') ?>
        <div class="contact main-content container flex-between">
            <div class="contact-info">
                <h1 class="align-center"><span class="title-span">Contact</span> Ons</h1>
                <ul>
                    <li>Telefoon: +31 6 12345678</li>
                    <li>Telefoon: +31 6 12345678</li>
                    <li>Email: info@example.nl</li>
                </ul>
            </div>
            <form class="flex-column" method="post" action="php/sendmail.php">
                <input class="contact-input" type="text" placeholder="Naam: *" id="name" name="name" required>
                <input class="contact-input" type="email" placeholder="Email: *" id="email" name="email" required>
                <input class="contact-input" type="text" placeholder="Telefoon:" id="phone" name="phonenumb">
                <input class="contact-input" type="text" placeholder="Subject: *" id="subject" name="subject">
                <textarea type="text" placeholder="Bericht: *" id="message" name="text" required></textarea>
                <input type="submit" id="submit" value="Verzend" required>

                <?php
                if (isset($_GET['message'])!= null )
                {
                    echo '<br>';
                    echo $_GET['message'];
                }
                ?>

            </form>
        </div>
        <iframe></iframe>
        <?php require('php/footer.php')?>

我正在开发一个网站,一切都适用于Android,Windows和MAC。  但是我很快就会在任何I-phone上打开它的数字都是&#34;消失了#34;他们仍然在那里,但他们被自动标记为数字,所以当你按它它会开始一个电话,但数字已经变为白色。我无法解决它。 有人能告诉我如何解决这个问题

1 个答案:

答案 0 :(得分:0)

试试这个元标记:

<meta name="format-detection" content="telephone=no">

How to disable phone number linking in Mobile Safari?