样式属性在webview中不起作用

时间:2017-08-29 06:01:43

标签: android html css webview styles

我从资源加载html页面并在应用程序中显示。 HTML页面正在显示,但当我尝试更改按钮的背景颜色时," onclick"然后背景颜色没有变化。

如果我使用浏览器测试页面然后它正在工作,但是当我使用webview在Android中加载html页面时,它无法正常工作。

onclick函数被调用但不知何故样式属性未被应用。 我试过以下三种方式。

1. $('#btnAC').css({'background-image', 'linear-gradient(180deg, black, red) !important'});  

2. document.getElementById("btnAC").style = "background-image: linear-gradient(180deg, black, red) !important;";  

3. $('#btnAC').css('background-image', 'linear-gradient(180deg, black, red) !important');

Java代码:

WebView webView = (WebView) findViewById(R.id.webView);
WebSettings webSettings = webView.getSettings();
webSettings.setJavaScriptEnabled(true);
webView.loadUrl("http:///android_asset/Web/index.html"); 

1 个答案:

答案 0 :(得分:0)

您可以使用WebView.loadDataWithBaseURL

  • htmlData ="" + htmlData; //让我们假设我们有/assets/style.css文件 webView.loadDataWithBaseURL(" file:/// android_asset /",htmlData," text / html"," UTF-8",null); *