HarmonyOS 如何在web组件中给html注入样式

HarmonyOS
5天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
fox280

参考demo给style标签注入样式:

//ets
import web_webview from '@ohos.web.webview';

@Entry
@Component
struct WebComponent {
  webviewController: web_webview.WebviewController = new web_webview.WebviewController();
  private customStyle: string =
    'html, body {margin: 0; padding: 0; overflow: hidden; touch-action: none; background:#ace}';

  aboutToAppear() {
    // 配置Web开启调试模式
    web_webview.WebviewController.setWebDebuggingAccess(true);
  }

  build() {
    Column() {

      Button('style').onClick((event: ClickEvent) => {

        this.webviewController.runJavaScript(`const head = document.head;
                                              console.log(head);
                                              const style = document.createElement('style');
                                              style.appendChild(document.createTextNode("${this.customStyle}"))
                                              head.appendChild(style)
        `)
      })
      Web({ src: $rawfile('index.html'), controller: this.webviewController }).domStorageAccess(true)
    }
  }
}
// html
<!DOCTYPE html>
<html>
<head>

</head>

<body>
<h1 id="text">
    这是一个测试信息,默认字体为黑色,调用runJavaScript方法后字体为绿色,调用runJavaScriptCodePassed方法后字体为红色
</h1>
</body>
</html>
分享
微博
QQ
微信
回复
5天前
相关问题
HarmonyOS Web组件注入js怎么传递对象
512浏览 • 1回复 待解决
HarmonyOS Web组件如何加载html字符串
622浏览 • 1回复 待解决
HarmonyOS Web组件加载html文件异常
522浏览 • 1回复 待解决
HarmonyOS web iframe 注入.js 问题
540浏览 • 1回复 待解决
web组件html文件的加载
783浏览 • 1回复 待解决
HarmonyOS Web如何搜索html界面的内容?
331浏览 • 1回复 待解决
如何在web组件获取和设置UserAgent
927浏览 • 1回复 待解决
预览器上WEB组件无法显示HTML内容
2559浏览 • 1回复 待解决
HarmonyOS Web无法访问指定html
257浏览 • 1回复 待解决