Click the button to pop up the dial keypad, how can the prompt box of ios prevent it from popping up? I'm popping up two layers now.

Click to contact us
(figure 1)
clipboard.png

ios
2
clipboard.png

3
clipboard.png

how to prohibit it (figure 2) how to prohibit it? (originally I thought it was a feature of mobile phone, but I think ele.me just popped up figure 3, so it should be banned.)

my code

               contactUS(){//
                    let telephone = "";
                    window.location.href = `tel:${telephone}`

            },
Mar.10,2022

set Meta in HTML

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

or set

with JS
var meta = document.createElement('meta');
meta.content='telephone=no';
meta.name='format-detection';
document.getElementsByTagName('head')[0].appendChild(meta);
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b381de-2c0f0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b381de-2c0f0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?