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);
Menu