如何在InAppBrowser中自定义页面样式

时间:2015-01-16 19:56:10

标签: android ios cordova cordova-plugins inappbrowser

我使用Cordova InAppBrowser Plugin来显示页面。

是否可以在InAppBrowser中更改页面样式?

1 个答案:

答案 0 :(得分:0)

是的,这是可能的,可以通过insertCSS来完成

var ref = window.open(...);
ref.insertCSS(details, callback);

其中详细信息是样式表的URL或要注入的实际文本(CSS)。插入样式后调用回调。