Привет, я хочу открыть URL внутри iframe, и он хорошо работает в ios и android, но проблема в том, что внутри содержимого URL iframe есть тег привязки и кликабельность. Если щелкнуть этот тег привязки, откройте другой URL (который относится к другому домену), но он не открывается в IOS.
. html
<ion-content color="light" paddding>
<div class="iframe-fix">
<iframe src="https://the-beauty-club.com/m-profil-tab/"
class="iframe-root"
frameborder="0"
webkitallowfullscreen
mozallowfullscreen
allowfullscreen>
</iframe>
</div>
</ion-content>
. с css
.iframe-fix iframe {
-webkit-overflow-scrolling: touch !important;
overflow: scroll !important;
width: 100%;
height: 100%;
border: none;
margin-top: 40px;
}
.iframe-fix {
overflow: hidden;
width: 100%;
height: 100%;
border: none;
background-color: #fff;
}