如何在 Ionic 中调整应用内浏览器的大小
How to Resize the In-App-Browser in Ionic
我正在尝试在我的应用程序中使用应用内浏览器插件。但是在使用插件时,它会覆盖整个屏幕。该应用程序有一个页眉和一个页脚,我需要在它们之间放置浏览器。
如果可能的话,请告诉我。
谢谢!!
您需要使用 iframe 标签来满足您的要求这里是一个使用演示
<ion-content>
<h1>The iframe element</h1>
<iframe src="https://Your site URL" title="Your site URL">
</iframe>
</ion-content>
或者如果您不想使用 iFrame,也可以使用此插件
cordova plugin add com.lesfrancschatons.cordova.plugins.overappbrowser
用于插件文档 click here
我正在尝试在我的应用程序中使用应用内浏览器插件。但是在使用插件时,它会覆盖整个屏幕。该应用程序有一个页眉和一个页脚,我需要在它们之间放置浏览器。 如果可能的话,请告诉我。 谢谢!!
您需要使用 iframe 标签来满足您的要求这里是一个使用演示
<ion-content>
<h1>The iframe element</h1>
<iframe src="https://Your site URL" title="Your site URL">
</iframe>
</ion-content>
或者如果您不想使用 iFrame,也可以使用此插件
cordova plugin add com.lesfrancschatons.cordova.plugins.overappbrowser
用于插件文档 click here